summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/ColourTable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/ColourTable.h')
-rw-r--r--src/gui/widgets/ColourTable.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/ColourTable.h b/src/gui/widgets/ColourTable.h
index 48e2309..b1e470a 100644
--- a/src/gui/widgets/ColourTable.h
+++ b/src/gui/widgets/ColourTable.h
@@ -30,11 +30,11 @@
#define _RG_ROSEGARDENCOLOURTABLE_H_
#include <map>
-#include <qtable.h>
+#include <tqtable.h>
#include <vector>
-class QWidget;
+class TQWidget;
class ColourList;
@@ -50,19 +50,19 @@ class ColourTable : public QTable
public:
typedef std::map<unsigned int, unsigned int, std::less<unsigned int> > ColourList;
- ColourTable(QWidget *parent, ColourMap &input, ColourList &list);
+ ColourTable(TQWidget *parent, ColourMap &input, ColourList &list);
void populate_table(ColourMap &input, ColourList &list);
signals:
- void entryTextChanged(unsigned int, QString);
- void entryColourChanged(unsigned int, QColor);
+ void entryTextChanged(unsigned int, TQString);
+ void entryColourChanged(unsigned int, TQColor);
public slots:
void slotEditEntry (int, int);
protected:
- std::vector<QColor> m_colours;
+ std::vector<TQColor> m_colours;
};