]> git.lyx.org Git - features.git/blobdiff - src/frontends/DialogBase.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / frontends / DialogBase.h
index f110645d3e4773ccce32df30ebde4e0abcb9a3c2..f25f738f1fb67b9108348e941f2114df67e92cb6 100644 (file)
@@ -24,6 +24,8 @@
 #ifdef SIGC_CXX_NAMESPACES
 using SigC::Connection;
 using SigC::slot;
+using SigC::Object;
+
 #endif
 
 
@@ -33,13 +35,7 @@ using SigC::slot;
     satisfy that request.  Thus a dialog will have to "pull" the necessary
     details from the core of the program.
  */
-#ifdef SIGC_CXX_NAMESPACES
-///
-class DialogBase : public SigC::Object
-#else
-///
 class DialogBase : public Object
-#endif
 {
 public:
        /**@name Constructors and Deconstructors */
@@ -60,8 +56,11 @@ public:
 
        ///
        enum EnumDialogStatus {
+               ///
                DIALOG_UNMODIFIED,
+               ///
                DIALOG_MODIFIED,
+               ///
                DIALOG_READONLY
        };
 };