Minor change to stop a doxygen warning. Doxygen doesn't like the \writeme before...
[synfig.git] / synfig-studio / trunk / src / gtkmm / module.h
index e0c205a..3647865 100644 (file)
@@ -1,5 +1,5 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file module.h
+/*!    \file gtkmm/module.h
 **     \brief Template Header
 **
 **     $Id: module.h,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
@@ -40,7 +40,7 @@ namespace studio {
 class Module : public etl::shared_object
 {
        bool status_;
-       
+
 protected:
        Module();
 
@@ -48,18 +48,18 @@ public:
        virtual ~Module();
 
        bool start();
-       
+
        bool stop();
-       
+
        bool get_status()const;
 
 protected:
-       
+
        virtual bool start_vfunc()=0;
        virtual bool stop_vfunc()=0;
 };
 
-       
+
 }; // END of namespace studio
 
 /* === E N D =============================================================== */