diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:29:15 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 18:55:18 +0900 |
commit | a7efb32e444ed3fe5307b5065c9bb5666d938c85 (patch) | |
tree | b75ead06092a95a7b8a2da9d508313ffe2b01376 | |
parent | d056c40912c7262e10e7276e062000d881ad777c (diff) | |
download | kooldock-r14.1.x.tar.gz kooldock-r14.1.x.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 24a21918d11caf54f387112706361bf6e198f801)
-rw-r--r-- | src/kooldock.cpp | 6 | ||||
-rw-r--r-- | src/setupdialogprg.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/kooldock.cpp b/src/kooldock.cpp index 2b5f801..cedf743 100644 --- a/src/kooldock.cpp +++ b/src/kooldock.cpp @@ -2290,7 +2290,7 @@ void KoolDock::saveConf() config->writeEntry("fSteppy", fSteppy); config->writeEntry("HighLightTime", fHighLightTime); config->writeEntry("iSpace", iSpace); - config->writeEntry("FirstRun", FALSE); + config->writeEntry("FirstRun", false); config->writeEntry("Xinerama", xinerama); config->writeEntry("hideTimer", hideTimer); config->writeEntry("Solid", Solid); @@ -2652,7 +2652,7 @@ void KoolDock::minApp() for (i = 0, item = witems.at(0); item; i++, item = witems.next()) { if (item->getId() == cId) { // Set default's item icon - item->setIcon(KWin::icon(cId, iwBig2, iwBig2, TRUE)); + item->setIcon(KWin::icon(cId, iwBig2, iwBig2, true)); } } KWin::deIconifyWindow(cId, true); @@ -2831,7 +2831,7 @@ void KoolDock::activateApp() for (i = 0, item = witems.at(0); item; i++, item = witems.next()) { if (item->getId() == cId) { // Set default's item icon - item->setIcon(KWin::icon(cId, iwBig2, iwBig2, TRUE)); + item->setIcon(KWin::icon(cId, iwBig2, iwBig2, true)); } } } diff --git a/src/setupdialogprg.cpp b/src/setupdialogprg.cpp index d0fdde8..40d6854 100644 --- a/src/setupdialogprg.cpp +++ b/src/setupdialogprg.cpp @@ -369,7 +369,7 @@ void SetupDialogPrg::applist_dropped(TQDropEvent* e,const TQValueList<TQIconDrag pos = name.findRev("/", -1); if (pos != -1) { name.remove(1, pos); - name.remove("/", TRUE); + name.remove("/", true); } // Create and show the appProp dialog appdlg->cmdname->setText(name); |