diff options
Diffstat (limited to 'ksim/library')
-rw-r--r-- | ksim/library/chart.cpp | 2 | ||||
-rw-r--r-- | ksim/library/themeloader.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ksim/library/chart.cpp b/ksim/library/chart.cpp index b9b5e31..62a2328 100644 --- a/ksim/library/chart.cpp +++ b/ksim/library/chart.cpp @@ -46,7 +46,7 @@ class KSim::Chart::Timer if (!m_timer) { m_timer = new TQTimer; m_timer->start(1000); - qAddPostRoutine(cleanup); + tqAddPostRoutine(cleanup); } TQObject::connect(m_timer, TQT_SIGNAL(timeout()), diff --git a/ksim/library/themeloader.cpp b/ksim/library/themeloader.cpp index f6d6474..ff52525 100644 --- a/ksim/library/themeloader.cpp +++ b/ksim/library/themeloader.cpp @@ -886,7 +886,7 @@ KSim::ThemeLoader &KSim::ThemeLoader::self() { if (!m_self) { // is it the first call? m_self = new KSim::ThemeLoader; // create sole instance - qAddPostRoutine(cleanup); + tqAddPostRoutine(cleanup); } return *m_self; // address of sole instance |