summaryrefslogtreecommitdiffstats
path: root/kppp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:04:19 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:04:19 -0500
commit008eae43da364c9a910416652cf277c4ef5895c9 (patch)
tree5f9060ce2395120f3ce327d444b035a6ece978a4 /kppp
parent2bc02dc6e21b9f38a76c6733a0931c7ebc944547 (diff)
downloadtdenetwork-008eae43da364c9a910416652cf277c4ef5895c9.tar.gz
tdenetwork-008eae43da364c9a910416652cf277c4ef5895c9.zip
Fix inadvertent "TQ" changes.
Diffstat (limited to 'kppp')
-rw-r--r--kppp/kpppwidget.cpp6
-rw-r--r--kppp/pppdata.cpp4
-rw-r--r--kppp/pppdata.h2
3 files changed, 6 insertions, 6 deletions
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"