From 228279d6717e69ffd2d2a886244179635ac27c2b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Jun 2006 03:17:16 +0000 Subject: Got store working directly through SigClientInterface git-svn-id: http://svn.drobilla.net/lad/grauph@22 a436a847-0d15-0410-975c-d299462d15a1 --- src/progs/gtk/PatchDescriptionWindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/progs/gtk/PatchDescriptionWindow.cpp') diff --git a/src/progs/gtk/PatchDescriptionWindow.cpp b/src/progs/gtk/PatchDescriptionWindow.cpp index d10a9c0e..7ae154c3 100644 --- a/src/progs/gtk/PatchDescriptionWindow.cpp +++ b/src/progs/gtk/PatchDescriptionWindow.cpp @@ -24,6 +24,7 @@ using std::string; PatchDescriptionWindow::PatchDescriptionWindow(BaseObjectType* cobject, const Glib::RefPtr& glade_xml) : Gtk::Window(cobject) +, m_patch_model(NULL) { glade_xml->get_widget("description_author_entry", m_author_entry); glade_xml->get_widget("description_description_textview", m_textview); @@ -41,7 +42,7 @@ PatchDescriptionWindow::PatchDescriptionWindow(BaseObjectType* cobject, const Gl * the window in any way. */ void -PatchDescriptionWindow::patch_model(PatchModel* patch_model) +PatchDescriptionWindow::patch_model(CountedPtr patch_model) { property_title() = patch_model->path() + " Properties"; m_patch_model = patch_model; -- cgit v1.2.1