From 6df37df7d1bfea68d6ef7730bdbaed3d9cdfe50c Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 1 Mar 2012 13:19:28 -0600 Subject: [PATCH] Rename additional global TQt functions --- kiosktool/kioskrun.cpp | 2 +- kiosktool/pageWidget.cpp | 2 +- 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())); }