summaryrefslogtreecommitdiff
path: root/gtk2_ardour/window_proxy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/window_proxy.cc')
-rwxr-xr-xgtk2_ardour/window_proxy.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/window_proxy.cc b/gtk2_ardour/window_proxy.cc
index ff525eb392..99da166af0 100755
--- a/gtk2_ardour/window_proxy.cc
+++ b/gtk2_ardour/window_proxy.cc
@@ -19,6 +19,9 @@
#include <gtkmm/window.h>
#include "window_proxy.h"
+
+#include "pbd/convert.h"
+
#include "i18n.h"
using namespace std;
@@ -57,7 +60,7 @@ WindowProxyBase::WindowProxyBase (string const & name, XMLNode const * node)
XMLProperty* prop;
if ((prop = (*i)->property (X_("visible"))) != 0) {
- _visible = string_is_affirmative (prop->value ());
+ _visible = PBD::string_is_affirmative (prop->value ());
}
if ((prop = (*i)->property (X_("x-off"))) != 0) {