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.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/progs/gtk/PatchDescriptionWindow.h') diff --git a/src/progs/gtk/PatchDescriptionWindow.h b/src/progs/gtk/PatchDescriptionWindow.h index 7c00faab..0ad8b286 100644 --- a/src/progs/gtk/PatchDescriptionWindow.h +++ b/src/progs/gtk/PatchDescriptionWindow.h @@ -20,6 +20,7 @@ #include #include #include +#include "util/CountedPtr.h" using std::string; namespace LibOmClient { class PatchModel; } @@ -39,13 +40,13 @@ class PatchDescriptionWindow : public Gtk::Window public: PatchDescriptionWindow(BaseObjectType* cobject, const Glib::RefPtr& refGlade); - void patch_model(PatchModel* patch_model); + void patch_model(CountedPtr patch_model); void cancel_clicked(); void ok_clicked(); private: - PatchModel* m_patch_model; + CountedPtr m_patch_model; Gtk::Entry* m_author_entry; Gtk::TextView* m_textview; -- cgit v1.2.1