summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-03 15:55:36 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-08 17:13:22 +0900
commit2cab1f3059038ab001f5185c29f0791c77aeeba1 (patch)
treee294a699a78e0aef2969216fc8fc1378b83b0064 /kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp
parentb2cb25ce7dde70c48747856d22dfac03f27033e1 (diff)
downloadtdenetwork-2cab1f3059038ab001f5185c29f0791c77aeeba1.tar.gz
tdenetwork-2cab1f3059038ab001f5185c29f0791c77aeeba1.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 89969dcb2142d91b295c8d18cde46e22ef118dce)
Diffstat (limited to 'kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp')
-rw-r--r--kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp b/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp
index ca4462e8..68a4ac16 100644
--- a/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp
+++ b/kopete/plugins/smpppdcs/smpppdcsprefsimpl.cpp
@@ -57,10 +57,10 @@ SMPPPDCSPrefs::SMPPPDCSPrefs(TQWidget* parent, const char* name, WFlags fl)
// if netstat is NOT available, disable the option and set to SMPPPD
if(TDEStandardDirs::findExe("netstat") == TQString()) {
- autoCSTest->setEnabled(FALSE);
- useNetstat->setEnabled(FALSE);
- useNetstat->setChecked(FALSE);
- useSmpppd->setChecked(TRUE);
+ autoCSTest->setEnabled(false);
+ useNetstat->setEnabled(false);
+ useNetstat->setChecked(false);
+ useSmpppd->setChecked(true);
}
}
@@ -95,9 +95,9 @@ void SMPPPDCSPrefs::scanStarted(uint total) {
// setup the scanProgress Dialog
if(!m_scanProgressDlg) {
- m_scanProgressDlg = new KProgressDialog(this, 0, i18n("Searching"), i18n("Searching for a SMPPPD on the local network..."), TRUE);
- m_scanProgressDlg->setAutoClose(TRUE);
- m_scanProgressDlg->setAllowCancel(TRUE);
+ m_scanProgressDlg = new KProgressDialog(this, 0, i18n("Searching"), i18n("Searching for a SMPPPD on the local network..."), true);
+ m_scanProgressDlg->setAutoClose(true);
+ m_scanProgressDlg->setAllowCancel(true);
m_scanProgressDlg->setMinimumDuration(2000);
connect(m_scanProgressDlg, TQ_SIGNAL(cancelClicked()), this, TQ_SLOT(cancelScanning()));