diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:29:01 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:29:01 +0000 |
commit | b678e7f967f438e123324c7a34b02388e68d70dc (patch) | |
tree | 5720acc1076baf217f77c48c96f7cabdbab4382b /ksim/library | |
parent | 5f5ee2367157176ed223b86343eb0a9e4022e020 (diff) | |
download | tdeutils-b678e7f967f438e123324c7a34b02388e68d70dc.tar.gz tdeutils-b678e7f967f438e123324c7a34b02388e68d70dc.zip |
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1158453 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/library')
-rw-r--r-- | ksim/library/chart.cpp | 2 | ||||
-rw-r--r-- | ksim/library/chart.h | 2 | ||||
-rw-r--r-- | ksim/library/pluginmodule.h | 2 | ||||
-rw-r--r-- | ksim/library/themeloader.h | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/ksim/library/chart.cpp b/ksim/library/chart.cpp index 5128cdb..12ff945 100644 --- a/ksim/library/chart.cpp +++ b/ksim/library/chart.cpp @@ -44,7 +44,7 @@ class KSim::Chart::Timer static void syncChart(KSim::Chart *chart) { if (!m_timer) { - m_timer = new QTimer; + m_timer = new TQTimer; m_timer->start(1000); qAddPostRoutine(cleanup); } diff --git a/ksim/library/chart.h b/ksim/library/chart.h index 0053ae3..b51ab83 100644 --- a/ksim/library/chart.h +++ b/ksim/library/chart.h @@ -25,7 +25,7 @@ #include <kdemacros.h> -class QColor; +class TQColor; namespace KSim { diff --git a/ksim/library/pluginmodule.h b/ksim/library/pluginmodule.h index 753030f..801f10c 100644 --- a/ksim/library/pluginmodule.h +++ b/ksim/library/pluginmodule.h @@ -24,7 +24,7 @@ #include <kdemacros.h> -class QPopupMenu; +class TQPopupMenu; class KConfig; #define KSIM_INIT_PLUGIN(className) \ diff --git a/ksim/library/themeloader.h b/ksim/library/themeloader.h index 28a38e6..9206583 100644 --- a/ksim/library/themeloader.h +++ b/ksim/library/themeloader.h @@ -28,10 +28,10 @@ #include <kdemacros.h> -class QStringList; -template<class> class QValueVector; +class TQStringList; +template<class> class TQValueVector; class KConfig; -class QWidget; +class TQWidget; namespace KSim { |