summaryrefslogtreecommitdiff
path: root/gtk2_ardour/missing_plugin_dialog.cc
diff options
context:
space:
mode:
authorThomas Brand <tom@trellis.ch>2017-07-01 18:42:24 +0200
committerRobin Gareus <robin@gareus.org>2017-07-01 19:28:26 +0200
commit63ea7b6516dbd7554d1eff6c98de50cf61fc9a72 (patch)
tree82fa339e009bc082dd8023916990800bea437081 /gtk2_ardour/missing_plugin_dialog.cc
parentf413b83cb9fa50954969a3d849999e1890ce6690 (diff)
NO-OP whitespace (updated GH PR #357)
Diffstat (limited to 'gtk2_ardour/missing_plugin_dialog.cc')
-rw-r--r--gtk2_ardour/missing_plugin_dialog.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/missing_plugin_dialog.cc b/gtk2_ardour/missing_plugin_dialog.cc
index 1f2a4f060f..98842b5b72 100644
--- a/gtk2_ardour/missing_plugin_dialog.cc
+++ b/gtk2_ardour/missing_plugin_dialog.cc
@@ -26,15 +26,15 @@ using namespace ARDOUR;
using namespace PBD;
MissingPluginDialog::MissingPluginDialog (Session * s, list<string> const & plugins)
- : ArdourDialog (_("Missing Plugins"), true, false)
+ : ArdourDialog (_("Missing Plugins"), true, false)
{
/* This dialog is always shown programatically. Center the window.*/
set_position (Gtk::WIN_POS_CENTER);
set_session (s);
- add_button (_("OK"), RESPONSE_OK);
- set_default_response (RESPONSE_OK);
+ add_button (_("OK"), RESPONSE_OK);
+ set_default_response (RESPONSE_OK);
Label* m = manage (new Label);
@@ -49,8 +49,8 @@ MissingPluginDialog::MissingPluginDialog (Session * s, list<string> const & plug
"It is recommended that you install the missing plugins and re-load the session.\n"
"(also check the blacklist, Window > Log and Preferences > Plugins)");
- m->set_markup (t.str ());
- get_vbox()->pack_start (*m, false, false);
+ m->set_markup (t.str ());
+ get_vbox()->pack_start (*m, false, false);
show_all ();
}