summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R. Fisher <mfisher@bketech.com>2013-07-15 12:48:33 -0500
committerMichael R. Fisher <mfisher@bketech.com>2013-07-15 12:48:33 -0500
commitabb8d61dea9da9d6560d25427b92b60d74fec109 (patch)
tree3566e308c4a1a251ace7b55559dd4f744c765285
parentd64d4b881d89acb0caaf8f7becf7bf4ad7341cef (diff)
Correcting Indentation Errors
-rw-r--r--gtk2_ardour/startup.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc
index 82914d79a8..433b80ff92 100644
--- a/gtk2_ardour/startup.cc
+++ b/gtk2_ardour/startup.cc
@@ -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);
}