]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/dlghatch.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / dlghatch.h
index a654d3097ea1f0e07032c17b7aed083471849c7c..12a1bbb0adb2de85540b204cc27deb304962299d 100644 (file)
@@ -3,9 +3,9 @@
 
 #include "ui_dlghatch.h"
 
-class RS_EntityContainer;
-class RS_Pattern;
-class RS_Hatch;
+class EntityContainer;
+class Pattern;
+class Hatch;
 
 class DlgHatch: public QDialog
 {
@@ -18,18 +18,18 @@ class DlgHatch: public QDialog
        public slots:
                void polish();
                void showEvent(QShowEvent * e);
-               void setHatch(RS_Hatch & h, bool isNew);
+               void setHatch(Hatch & h, bool isNew);
                void updateHatch();
                void setPattern(const QString & p);
                void resizeEvent(QResizeEvent *);
                void updatePreview();
-               void updatePreview(RS_Pattern *);
+               void updatePreview(Pattern *);
 
        private:
-               RS_EntityContainer * preview;
+               EntityContainer * preview;
                bool isNew;
-               RS_Pattern * pattern;
-               RS_Hatch * hatch;
+               Pattern * pattern;
+               Hatch * hatch;
 
        private:
                Ui::DlgHatch ui;