Salome HOME
Updates from V7_dev branch
[modules/gui.git] / tools / dlgfactory / __QDIALOG__.h
index b2cfd4f7fef93f2ab4f0095c633a070d1aabce53..37ca4437523a083170f38e6b1827a05c68d46bb3 100644 (file)
@@ -1,21 +1,21 @@
 #ifndef ___CLASSNAME___HXX
 #define ___CLASSNAME___HXX
 
-#include <QtGui>
+#include <QDialog>
+
 #include "ui___CLASSNAME__.h"
 
 class __CLASSNAME__ : public QDialog
 {
   Q_OBJECT
-    
- public:
-  __CLASSNAME__(QDialog *parent = 0);
-
- protected slots:    
-    void accept();
-  //void reject();
-  
- private:
+
+public:
+  __CLASSNAME__(QDialog* parent = 0);
+
+protected slots:    
+  void accept();
+
+private:
   Ui___CLASSNAME__ ui; // instance of the class defined in ui___CLASSNAME__.hxx
 };