summaryrefslogtreecommitdiffstats
path: root/kcoloredit/paletteview.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kcoloredit/paletteview.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcoloredit/paletteview.h')
-rw-r--r--kcoloredit/paletteview.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kcoloredit/paletteview.h b/kcoloredit/paletteview.h
index 0032997f..9501de40 100644
--- a/kcoloredit/paletteview.h
+++ b/kcoloredit/paletteview.h
@@ -18,8 +18,8 @@
#ifndef PALETTEVIEW_H
#define PALETTEVIEW_H
-#include <qframe.h>
-#include <qscrollbar.h>
+#include <tqframe.h>
+#include <tqscrollbar.h>
#include "paletteviewscrolledarea.h"
@@ -29,7 +29,7 @@ class KColorEditView;
* Its parent is KColorEditView
* @author Artur Rataj
*/
-class PaletteView : public QFrame {
+class PaletteView : public TQFrame {
Q_OBJECT
public:
@@ -37,7 +37,7 @@ public:
* The effective cell sizes may be adjusted to fit the widget sizes.
*/
PaletteView(const int defaultCellWidth, const int defaultCellHeight, const int cellSpacing,
- KColorEditView* view, QWidget *parent = 0, const char *name=0);
+ KColorEditView* view, TQWidget *parent = 0, const char *name=0);
~PaletteView();
/** Calls redraw() in scrolledArea */
void redraw();
@@ -56,9 +56,9 @@ protected:
/** The scrolled area */
PaletteViewScrolledArea* scrolledArea;
/** The scroll bar widget */
- QScrollBar* scrollBar;
+ TQScrollBar* scrollBar;
/** The horizontal scroll bar widget */
- QScrollBar* hScrollBar;
+ TQScrollBar* hScrollBar;
};
#endif