]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/dlgpoint.h
Bugfixes related to removing Snapper class.
[architektonas] / src / forms / dlgpoint.h
index 46c624ae0112c722ec43407cafdcb19e0eb3de6a..82c799da79599e21e5ab3fd38671a762a75cfaf9 100644 (file)
@@ -2,9 +2,9 @@
 #define __DLGPOINT_H__
 
 #include "ui_dlgpoint.h"
-#include "rs_pen.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;