summaryrefslogtreecommitdiffstats
path: root/kiosktool/pageWidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-10-15 09:34:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-10-15 09:34:36 +0000
commit586a5f786f9af3ddccdb6eba16fd529a5e88ed4c (patch)
treea889bda9cdb4e705ef7bf50ea2a0a8e53b33a3bc /kiosktool/pageWidget.h
parent281b2113b209bd51bd923ad8f289f4041ff03a0f (diff)
downloadkiosktool-586a5f786f9af3ddccdb6eba16fd529a5e88ed4c.tar.gz
kiosktool-586a5f786f9af3ddccdb6eba16fd529a5e88ed4c.zip
Raw TQt conversion of kiosktool
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kiosktool@1258970 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kiosktool/pageWidget.h')
-rw-r--r--kiosktool/pageWidget.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kiosktool/pageWidget.h b/kiosktool/pageWidget.h
index 4006fba..5921892 100644
--- a/kiosktool/pageWidget.h
+++ b/kiosktool/pageWidget.h
@@ -24,14 +24,14 @@
class ComponentAction;
class ComponentData;
-class ComponentActionItem : public QCheckListItem
+class ComponentActionItem : public TQCheckListItem
{
public:
- ComponentActionItem( QListView * parent, ComponentAction *action, int index);
+ ComponentActionItem( TQListView * parent, ComponentAction *action, int index);
ComponentAction *action() const { return m_action; }
- virtual int compare ( QListViewItem * i, int col, bool ascending ) const;
+ virtual int compare ( TQListViewItem * i, int col, bool ascending ) const;
private:
ComponentAction *m_action;
@@ -41,10 +41,10 @@ private:
class PageWidget
{
public:
- PageWidget(QWidget *me);
+ PageWidget(TQWidget *me);
virtual ~PageWidget();
- QWidget *widget() const { return m_widget; }
+ TQWidget *widget() const { return m_widget; }
void fillActionList(KListView *listView, ComponentData *componentData);
bool saveActionListChanges(KListView *listView);
@@ -54,14 +54,14 @@ public:
virtual void setFocus() = 0;
- virtual QString subCaption() = 0;
+ virtual TQString subCaption() = 0;
protected:
void saveActionListItem(ComponentAction *action, bool b);
private:
- QWidget *m_widget;
+ TQWidget *m_widget;
};
#endif