From 008eae43da364c9a910416652cf277c4ef5895c9 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Fri, 13 Apr 2012 01:04:19 -0500 Subject: Fix inadvertent "TQ" changes. --- kppp/kpppwidget.cpp | 6 +++--- kppp/pppdata.cpp | 4 ++-- kppp/pppdata.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'kppp') diff --git a/kppp/kpppwidget.cpp b/kppp/kpppwidget.cpp index 4b78d330..0009750b 100644 --- a/kppp/kpppwidget.cpp +++ b/kppp/kpppwidget.cpp @@ -1008,8 +1008,8 @@ void KPPPWidget::showNews() { /* * Introduce the QuickHelp feature to new users of this version */ - #define TQUICKHELP_HINT "Hint_QuickHelp" - if(gpppdata.readNumConfig(GENERAL_GRP, TQUICKHELP_HINT, 0) == 0) { + #define QUICKHELP_HINT "Hint_QuickHelp" + if(gpppdata.readNumConfig(GENERAL_GRP, QUICKHELP_HINT, 0) == 0) { TQDialog dlg(0, 0, true); dlg.setCaption(i18n("Recent Changes in KPPP")); @@ -1061,7 +1061,7 @@ void KPPPWidget::showNews() { dlg.exec(); if(cb->isChecked()) { - gpppdata.writeConfig(GENERAL_GRP, TQUICKHELP_HINT, 1); + gpppdata.writeConfig(GENERAL_GRP, QUICKHELP_HINT, 1); gpppdata.save(); } } diff --git a/kppp/pppdata.cpp b/kppp/pppdata.cpp index a983a8b4..c258eda6 100644 --- a/kppp/pppdata.cpp +++ b/kppp/pppdata.cpp @@ -300,12 +300,12 @@ void PPPData::set_redial_on_nocarrier(bool set) { bool PPPData::quit_on_disconnect() { - return (bool) readNumConfig(GENERAL_GRP, TQUITONDISCONNECT_KEY, false); + return (bool) readNumConfig(GENERAL_GRP, QUITONDISCONNECT_KEY, false); } void PPPData::set_quit_on_disconnect(bool set) { - writeConfig(GENERAL_GRP, TQUITONDISCONNECT_KEY, (int) set); + writeConfig(GENERAL_GRP, QUITONDISCONNECT_KEY, (int) set); } diff --git a/kppp/pppdata.h b/kppp/pppdata.h index 904ef581..7879d1fa 100644 --- a/kppp/pppdata.h +++ b/kppp/pppdata.h @@ -70,7 +70,7 @@ class KConfig; #define SHOWLOGWIN_KEY "ShowLogWindow" #define AUTOREDIAL_KEY "AutomaticRedial" #define DISCONNECT_KEY "DisconnectOnXServerExit" -#define TQUITONDISCONNECT_KEY "QuitOnDisconnect" +#define QUITONDISCONNECT_KEY "QuitOnDisconnect" #define NUMACCOUNTS_KEY "NumberOfAccounts" #define NUMMODEMS_KEY "NumberOfModems" #define REDIALONNOCARR_KEY "RedialOnNoCarrier" -- cgit v1.2.1