diff options
Diffstat (limited to 'src/gui/PatchPropertiesWindow.cpp')
-rw-r--r-- | src/gui/PatchPropertiesWindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/PatchPropertiesWindow.cpp b/src/gui/PatchPropertiesWindow.cpp index 055c8386..0fc080e0 100644 --- a/src/gui/PatchPropertiesWindow.cpp +++ b/src/gui/PatchPropertiesWindow.cpp @@ -22,6 +22,7 @@ #include "App.hpp" using namespace std; +using namespace Raul; namespace Ingen { namespace GUI { @@ -49,7 +50,7 @@ PatchPropertiesWindow::PatchPropertiesWindow(BaseObjectType* cobject, const Glib void PatchPropertiesWindow::set_patch(SharedPtr<PatchModel> patch_model) { - property_title() = patch_model->path() + " Properties"; + property_title() = patch_model->path().str() + " Properties"; _patch_model = patch_model; const Atom& name_atom = _patch_model->get_property("doap:name"); |