Correcting Indentation Errors
authorMichael R. Fisher <mfisher@bketech.com>
Mon, 15 Jul 2013 17:48:33 +0000 (12:48 -0500)
committerMichael R. Fisher <mfisher@bketech.com>
Mon, 15 Jul 2013 17:48:33 +0000 (12:48 -0500)
gtk2_ardour/startup.cc

index 82914d79a8fae11483d740f616952da500042d05..433b80ff92974f9a3ea7a9e0e58982788a078c81 100644 (file)
@@ -189,9 +189,9 @@ ArdourStartup::ready_without_display () const
 void
 ArdourStartup::setup_prerelease_page ()
 {
-        VBox* vbox = manage (new VBox);
-        Label* label = manage (new Label);
-        label->set_markup (_("<b>Welcome to this BETA release of Ardour 3.0</b>\n\n\
+       VBox* vbox = manage (new VBox);
+       Label* label = manage (new Label);
+       label->set_markup (_("<b>Welcome to this BETA release of Ardour 3.0</b>\n\n\
 Ardour 3.0 has been released for Linux but because of the lack of testers,\n\
 it is still at the beta stage on OS X. So, a few guidelines:\n\
 \n\
@@ -209,13 +209,13 @@ Full information on all the above can be found on the support page at\n\
                 http://ardour.org/support\n\
 "));
 
-        vbox->set_border_width (12);
-        vbox->pack_start (*label, false, false, 12);
-        vbox->show_all ();
-
-        append_page (*vbox);
-        set_page_type (*vbox, ASSISTANT_PAGE_CONTENT);
-        set_page_title (*vbox, _("This is a BETA RELEASE"));
+       vbox->set_border_width (12);
+       vbox->pack_start (*label, false, false, 12);
+       vbox->show_all ();
+       
+       append_page (*vbox);
+       set_page_type (*vbox, ASSISTANT_PAGE_CONTENT);
+       set_page_title (*vbox, _("This is a BETA RELEASE"));
        set_page_complete (*vbox, true);
 }