]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/layerdialog.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / forms / layerdialog.h
index 2b8d69add326d1cca914e6e847296f88f3b18803..03b1040defe891508a82a3d9c44d0530e2dfbd8c 100644 (file)
@@ -3,8 +3,8 @@
 
 #include "ui_layerdialog.h"
 
-class RS_Layer;
-class RS_LayerList;
+class Layer;
+class LayerList;
 
 class LayerDialog: public QDialog
 {
@@ -15,15 +15,15 @@ class LayerDialog: public QDialog
                ~LayerDialog();
 
        public slots:
-               void setLayer(RS_Layer * l);
-               void setLayerList(RS_LayerList * ll);
+               void setLayer(Layer * l);
+               void setLayerList(LayerList * ll);
                void setEditLayer(bool el);
                void updateLayer();
                void validate();
 
        protected:
-               RS_Layer * layer;
-               RS_LayerList * layerList;
+               Layer * layer;
+               LayerList * layerList;
                QString layerName;
                bool editLayer;