diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:36:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:36:28 -0600 |
commit | 3c87ec12c23bf62d3f60a7dd64020af8e0b997ce (patch) | |
tree | af5b4b5472d6e9ca5f87b12ceafda358b79d92c6 /ksim/library | |
parent | e31dd7c37ff5af25163426915faddfd43327031f (diff) | |
download | tdeutils-3c87ec12c23bf62d3f60a7dd64020af8e0b997ce.tar.gz tdeutils-3c87ec12c23bf62d3f60a7dd64020af8e0b997ce.zip |
Rename additional global TQt functions
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 |