diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:19:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:19:28 -0600 |
commit | 6df37df7d1bfea68d6ef7730bdbaed3d9cdfe50c (patch) | |
tree | f1b1ca7f188561f67f3cc9dd36e6efea4eeaa2b3 | |
parent | 2840c3129b325227c17c9615efdccbfe095486c7 (diff) | |
download | kiosktool-6df37df7d1bfea68d6ef7730bdbaed3d9cdfe50c.tar.gz kiosktool-6df37df7d1bfea68d6ef7730bdbaed3d9cdfe50c.zip |
Rename additional global TQt functions
-rw-r--r-- | kiosktool/kioskrun.cpp | 2 | ||||
-rw-r--r-- | kiosktool/pageWidget.cpp | 2 | ||||
-rw-r--r-- | kiosktool/screensaverComponent.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kiosktool/kioskrun.cpp b/kiosktool/kioskrun.cpp index 56f124e..43c8167 100644 --- a/kiosktool/kioskrun.cpp +++ b/kiosktool/kioskrun.cpp @@ -724,7 +724,7 @@ KioskRun::mergeConfigFile(const TQString &filename) it2 != map.end(); ++it2) { #ifdef DEBUG_ENTRIES -qWarning("[%s] %s --> %s", (*it).latin1(), it2.key().latin1(), it2.data().latin1()); +tqWarning("[%s] %s --> %s", (*it).latin1(), it2.key().latin1(), it2.data().latin1()); #endif saveCfg->writeEntry(it2.key(), it2.data()); } diff --git a/kiosktool/pageWidget.cpp b/kiosktool/pageWidget.cpp index 3316f8f..20eab51 100644 --- a/kiosktool/pageWidget.cpp +++ b/kiosktool/pageWidget.cpp @@ -96,7 +96,7 @@ PageWidget::fillActionList(KListView *listView, ComponentData *componentData) file = "kdeglobals"; TQString group = action->group; bool immutable = KioskRun::self()->isConfigImmutable(file, group); -qWarning("File = %s Group = %s Immutable = %s", file.latin1(), group.latin1(), immutable ? "true" : "false"); +tqWarning("File = %s Group = %s Immutable = %s", file.latin1(), group.latin1(), immutable ? "true" : "false"); item->setOn(immutable); } else if (action->type == ComponentAction::ActCustom) diff --git a/kiosktool/screensaverComponent.cpp b/kiosktool/screensaverComponent.cpp index b718ea8..73a99c0 100644 --- a/kiosktool/screensaverComponent.cpp +++ b/kiosktool/screensaverComponent.cpp @@ -24,7 +24,7 @@ ScreenSaverComponent::ScreenSaverComponent( TQObject *parent) : Component(parent) { -qWarning("ScreenSaverComponent::ScreenSaverComponent"); +tqWarning("ScreenSaverComponent::ScreenSaverComponent"); connect(&m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotPreviewStarted())); } |