summaryrefslogtreecommitdiffstats
path: root/kpager
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:17:20 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:17:20 +0000
commita5edd20f0de599dbe7f7f00a184b78ac5156a846 (patch)
treeaf263e8b05d3a7ca4cadaae1e4c5b1f739d0a03b /kpager
parentc663b6440964f6ac48027143ac9e63298991f9d0 (diff)
downloadtdebase-a5edd20f0de599dbe7f7f00a184b78ac5156a846.tar.gz
tdebase-a5edd20f0de599dbe7f7f00a184b78ac5156a846.zip
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1158418 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpager')
-rw-r--r--kpager/config.h4
-rw-r--r--kpager/desktop.cpp4
-rw-r--r--kpager/desktop.h4
-rw-r--r--kpager/kpager.h2
4 files changed, 7 insertions, 7 deletions
diff --git a/kpager/config.h b/kpager/config.h
index 683ee0176..2b8b095d3 100644
--- a/kpager/config.h
+++ b/kpager/config.h
@@ -25,8 +25,8 @@
#include <kdialogbase.h>
-class QCheckBox;
-class QButtonGroup;
+class TQCheckBox;
+class TQButtonGroup;
class KPagerConfigDialog : public KDialogBase
{
diff --git a/kpager/desktop.cpp b/kpager/desktop.cpp
index 311378171..3319418a1 100644
--- a/kpager/desktop.cpp
+++ b/kpager/desktop.cpp
@@ -649,7 +649,7 @@ void Desktop::backgroundLoaded(bool b)
{
if (m_bgSmallPixmap) { delete m_bgSmallPixmap; m_bgSmallPixmap=0L ; };
- if (!m_bgCommonSmallPixmap) m_bgCommonSmallPixmap=new QPixmap;
+ if (!m_bgCommonSmallPixmap) m_bgCommonSmallPixmap=new TQPixmap;
*m_bgCommonSmallPixmap=scalePixmap(*m_bgPixmap,200,150);
}
else
@@ -657,7 +657,7 @@ void Desktop::backgroundLoaded(bool b)
if (m_bgCommonSmallPixmap) { delete m_bgCommonSmallPixmap;
m_bgCommonSmallPixmap=0L ; };
- if (!m_bgSmallPixmap) m_bgSmallPixmap=new QPixmap;
+ if (!m_bgSmallPixmap) m_bgSmallPixmap=new TQPixmap;
*m_bgSmallPixmap=fastScalePixmap(*m_bgPixmap,200,150);
}
delete m_bgPixmap;
diff --git a/kpager/desktop.h b/kpager/desktop.h
index 067555b58..74997dba3 100644
--- a/kpager/desktop.h
+++ b/kpager/desktop.h
@@ -32,8 +32,8 @@
class KSharedPixmap;
class KPopupMenu;
-class QPainter;
-class QPoint;
+class TQPainter;
+class TQPoint;
class Desktop : public QWidget
{
diff --git a/kpager/kpager.h b/kpager/kpager.h
index a659c7592..8911e1619 100644
--- a/kpager/kpager.h
+++ b/kpager/kpager.h
@@ -32,7 +32,7 @@
#include "kpagerIface.h"
class KPager;
-class QPopupMenu;
+class TQPopupMenu;
class KPagerMainWindow : public KMainWindow, public virtual KPagerIface
{