summaryrefslogtreecommitdiffstats
path: root/quanta/components/csseditor/csseditor_globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/csseditor/csseditor_globals.h')
-rw-r--r--quanta/components/csseditor/csseditor_globals.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/quanta/components/csseditor/csseditor_globals.h b/quanta/components/csseditor/csseditor_globals.h
index fefae7c8..b577981e 100644
--- a/quanta/components/csseditor/csseditor_globals.h
+++ b/quanta/components/csseditor/csseditor_globals.h
@@ -17,12 +17,12 @@
#ifndef CSSEDITOR_GLOBALS_H
#define CSSEDITOR_GLOBALS_H
-#include <qspinbox.h>
-#include <qregexp.h>
-#include <qstringlist.h>
+#include <tqspinbox.h>
+#include <tqregexp.h>
+#include <tqstringlist.h>
namespace CSSEditorGlobals {
-const QStringList HTMLColors(QStringList::split(",",QString("aliceblue,antiquewhite,aqua,aquamarine,azure,beige,bisque,black,blanchedalmond,"
+const TQStringList HTMLColors(TQStringList::split(",",TQString("aliceblue,antiquewhite,aqua,aquamarine,azure,beige,bisque,black,blanchedalmond,"
"blue,blueviolet,brown,burlywood,cadetblue,chartreuse,chocolate,coral,cornflowerblue,"
"cornsilk,crimson,cyan,darkblue,darkcyan,darkgoldenrod,darkgray,darkgreen,"
"darkkhaki,darkmagenta,darkolivegreen,darkorange,darkorchid,darkred,darksalmon,"
@@ -42,21 +42,21 @@ const QStringList HTMLColors(QStringList::split(",",QString("aliceblue,antiquewh
"yellow,yellowgreen")));
- const QStringList lengthUnits(QStringList::split(",",QString("cm,em,ex,in,mm,pc,pt,px")));
- const QStringList frequencyUnits(QStringList::split(",",QString("Hz,kHz")));
- const QStringList angleUnits(QStringList::split(",",QString("deg,rad,grad")));
- const QStringList timeUnits(QStringList::split(",",QString("s,ms")));
+ const TQStringList lengthUnits(TQStringList::split(",",TQString("cm,em,ex,in,mm,pc,pt,px")));
+ const TQStringList frequencyUnits(TQStringList::split(",",TQString("Hz,kHz")));
+ const TQStringList angleUnits(TQStringList::split(",",TQString("deg,rad,grad")));
+ const TQStringList timeUnits(TQStringList::split(",",TQString("s,ms")));
}
class mySpinBox : public QSpinBox{
Q_OBJECT
public:
- mySpinBox(QWidget * parent = 0, const char * name = 0 );
- mySpinBox( int minValue, int maxValue, int step = 1, QWidget * parent = 0, const char * name = 0 );
+ mySpinBox(TQWidget * parent = 0, const char * name = 0 );
+ mySpinBox( int minValue, int maxValue, int step = 1, TQWidget * parent = 0, const char * name = 0 );
~mySpinBox();
public slots:
- void checkSuffix(const QString&);
+ void checkSuffix(const TQString&);
};