]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/dlgpoint.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / dlgpoint.h
index 39573bc57a98de2c76ce6a99adf71872ff4ba98c..82c799da79599e21e5ab3fd38671a762a75cfaf9 100644 (file)
@@ -4,7 +4,7 @@
 #include "ui_dlgpoint.h"
 #include "pen.h"
 
-class RS_Point;
+class Point;
 
 class DlgPoint: public QDialog
 {
@@ -15,12 +15,12 @@ class DlgPoint: public QDialog
                ~DlgPoint();
 
        public slots:
-               void setPoint(RS_Point & p);
+               void setPoint(Point & p);
                void updatePoint();
 
        private:
-               RS_Pen pen;
-               RS_Point * point;
+               Pen pen;
+               Point * point;
 
        private:
                Ui::DlgPoint ui;