Code

Node tool: fix Tab and Shift+Tab
[inkscape.git] / src / ui / dialog / memory.h
index 0fe7f87c575da149ac5c7e2f4e4494f2844c37cc..792391b8973cdc4377d8e460d83db279133ef65d 100644 (file)
@@ -1,30 +1,28 @@
-/**
- * \brief Memory statistics dialog
- *
- * Authors:
+/** @file
+ * @brief Memory statistics dialog
+ */
+/* Authors:
  *     MenTaLguY <mental@rydia.net>
  * 
  * Copyright 2005 Authors
- *
  * Released under GNU GPL.  Read the file 'COPYING' for more information.
  */
 
 #ifndef SEEN_INKSCAPE_UI_DIALOG_MEMORY_H
 #define SEEN_INKSCAPE_UI_DIALOG_MEMORY_H
 
-#include "dialog.h"
+#include "ui/widget/panel.h"
 
 namespace Inkscape {
 namespace UI {
 namespace Dialog {
 
-class Memory : public Dialog {
+class Memory : public UI::Widget::Panel {
 public:
-    Memory(Behavior::BehaviorFactory behavior_factory);
+    Memory();
     ~Memory();
 
-    static Memory *create(Behavior::BehaviorFactory behavior_factory) 
-    { return new Memory(behavior_factory); }
+    static Memory &getInstance() { return *new Memory(); }
 
 protected:
     void _apply();
@@ -52,4 +50,4 @@ private:
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :