13
0

Correcting Indentation Errors

This commit is contained in:
Michael R. Fisher 2013-07-15 12:48:33 -05:00 committed by Paul Davis
parent bffa13d84b
commit 1ea7be55f5

View File

@ -189,9 +189,9 @@ ArdourStartup::ready_without_display () const
void void
ArdourStartup::setup_prerelease_page () ArdourStartup::setup_prerelease_page ()
{ {
VBox* vbox = manage (new VBox); VBox* vbox = manage (new VBox);
Label* label = manage (new Label); Label* label = manage (new Label);
label->set_markup (_("<b>Welcome to this BETA release of Ardour 3.0</b>\n\n\ 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\ 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\ it is still at the beta stage on OS X. So, a few guidelines:\n\
\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\ http://ardour.org/support\n\
")); "));
vbox->set_border_width (12); vbox->set_border_width (12);
vbox->pack_start (*label, false, false, 12); vbox->pack_start (*label, false, false, 12);
vbox->show_all (); vbox->show_all ();
append_page (*vbox); append_page (*vbox);
set_page_type (*vbox, ASSISTANT_PAGE_CONTENT); set_page_type (*vbox, ASSISTANT_PAGE_CONTENT);
set_page_title (*vbox, _("This is a BETA RELEASE")); set_page_title (*vbox, _("This is a BETA RELEASE"));
set_page_complete (*vbox, true); set_page_complete (*vbox, true);
} }