]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/fontbox.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / widgets / fontbox.h
index ef39fe513baf5eaac3a08e5759cb58e2955c510d..0de568f0d0e9cee1d9f85aac74163a1a704a9282 100644 (file)
@@ -3,7 +3,7 @@
 
 #include <QtGui>
 
-class RS_Font;
+class Font;
 
 /**
  * A combobox for choosing a font name.
@@ -17,17 +17,17 @@ class FontBox: public QComboBox
                virtual ~FontBox();
 
                void init();
-               RS_Font * getFont();
+               Font * getFont();
                void setFont(const QString & fName);
 
        private slots:
                void slotFontChanged(int index);
 
        signals:
-               void fontChanged(RS_Font * font);
+               void fontChanged(Font * font);
 
        private:
-               RS_Font * currentFont;
+               Font * currentFont;
 };
 
 #endif // __FONTBOX_H__