Code

r14551@tres: ted | 2007-02-24 15:22:47 -0800
[inkscape.git] / src / extension / prefdialog.h
index bf30eda36617535eea455986be0ba56667f85f4c..8092a83d9c1715409755f9ef50a95ece789184b9 100644 (file)
@@ -20,6 +20,7 @@
 namespace Inkscape {
 namespace Extension {
 
+/** \brief  A class to represent the preferences for an extension */
 class PrefDialog : public Gtk::Dialog {
     /** \brief  Help string if it exists */
     gchar const * _help;
@@ -28,7 +29,7 @@ class PrefDialog : public Gtk::Dialog {
 
 public:
     PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * controls);
-    Gtk::ResponseType run (void);
+    int run (void);
 
 };