From abb8d61dea9da9d6560d25427b92b60d74fec109 Mon Sep 17 00:00:00 2001 From: "Michael R. Fisher" Date: Mon, 15 Jul 2013 12:48:33 -0500 Subject: [PATCH] Correcting Indentation Errors --- gtk2_ardour/startup.cc | 20 ++++++++++---------- 1 file 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 (_("Welcome to this BETA release of Ardour 3.0\n\n\ + VBox* vbox = manage (new VBox); + Label* label = manage (new Label); + label->set_markup (_("Welcome to this BETA release of Ardour 3.0\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); }