]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/blockwidget.h
Sanity check stage II: rename classes...
[architektonas] / src / widgets / blockwidget.h
index 784df4ba2e463557e7579b51afb01f9b41e17c81..804d4eeac391b519a7bf4cbbee0228082cfff98f 100644 (file)
@@ -5,20 +5,20 @@
 
 class RS_Block;
 class RS_BlockList;
-class QG_ActionHandler;
+class ActionHandler;
 
 /**
  * This is the Qt implementation of a widget which can view a
  * block list.
  */
-class QG_BlockWidget: public QWidget
+class BlockWidget: public QWidget
 {
     Q_OBJECT
 
        public:
-               QG_BlockWidget(QG_ActionHandler * ah, QWidget * parent,
+               BlockWidget(ActionHandler * ah, QWidget * parent,
                        const char * name = 0, Qt::WFlags f = 0);
-               ~QG_BlockWidget();
+               ~BlockWidget();
 
                void setBlockList(RS_BlockList * blockList);
                RS_BlockList * getBlockList();
@@ -58,7 +58,7 @@ class QG_BlockWidget: public QWidget
                QPixmap pxmInsert;
                QPixmap pxmDefreezeAll;
                QPixmap pxmFreezeAll;
-               QG_ActionHandler * actionHandler;
+               ActionHandler * actionHandler;
 };
 
 #endif // __BLOCKWIDGET_H__