summaryrefslogtreecommitdiffstats
path: root/kicker
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-25 18:08:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-27 10:24:24 +0900
commit0a439ac80bdf6ffb9cac104ad3098a321ee0403c (patch)
tree737edb6e89138f645d20bab7378e1ba90df09863 /kicker
parent0ba4723b7fad260e7bfe1848d0d16329779b090f (diff)
downloadtdebase-0a439ac80bdf6ffb9cac104ad3098a321ee0403c.tar.gz
tdebase-0a439ac80bdf6ffb9cac104ad3098a321ee0403c.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kicker')
-rw-r--r--kicker/applets/clock/clock.cpp8
-rw-r--r--kicker/applets/launcher/quickbutton.cpp4
-rw-r--r--kicker/kicker/ui/k_mnu.cpp14
-rw-r--r--kicker/kicker/ui/k_new_mnu.cpp4
-rw-r--r--kicker/libkicker/panelbutton.cpp10
-rw-r--r--kicker/libkicker/panelbutton.h4
-rw-r--r--kicker/libkicker/simplebutton.cpp10
-rw-r--r--kicker/libkicker/simplebutton.h4
-rw-r--r--kicker/taskbar/taskbarcontainer.cpp4
-rw-r--r--kicker/taskbar/taskcontainer.cpp2
-rw-r--r--kicker/taskmanager/taskrmbmenu.cpp4
11 files changed, 34 insertions, 34 deletions
diff --git a/kicker/applets/clock/clock.cpp b/kicker/applets/clock/clock.cpp
index 7cfe949eb..f8ddf0d38 100644
--- a/kicker/applets/clock/clock.cpp
+++ b/kicker/applets/clock/clock.cpp
@@ -353,9 +353,9 @@ void DigitalClock::updateClock()
if (_force || newStr != _timeStr)
{
_timeStr = newStr;
- setUpdatesEnabled( FALSE );
+ setUpdatesEnabled( false );
display(_timeStr);
- setUpdatesEnabled( TRUE );
+ setUpdatesEnabled( true );
update();
}
@@ -415,7 +415,7 @@ void DigitalClock::paintEvent(TQPaintEvent*)
// but other colors would break the lcd-lock anyway
void DigitalClock::drawContents( TQPainter * p)
{
- setUpdatesEnabled( FALSE );
+ setUpdatesEnabled( false );
TQPalette pal = palette();
if (_prefs->digitalLCDStyle())
pal.setColor( TQColorGroup::Foreground, TQColor(128,128,128));
@@ -430,7 +430,7 @@ void DigitalClock::drawContents( TQPainter * p)
pal.setColor( TQColorGroup::Foreground, _prefs->digitalForegroundColor());
setPalette( pal );
p->translate( -2, -2 );
- setUpdatesEnabled( TRUE );
+ setUpdatesEnabled( true );
TQLCDNumber::drawContents( p );
p->translate( +1, +1 );
}
diff --git a/kicker/applets/launcher/quickbutton.cpp b/kicker/applets/launcher/quickbutton.cpp
index ee608a92e..7c8186ce5 100644
--- a/kicker/applets/launcher/quickbutton.cpp
+++ b/kicker/applets/launcher/quickbutton.cpp
@@ -266,10 +266,10 @@ void QuickButton::launch()
}
if (_qurl->kurl().url() == "SPECIAL_BUTTON__SHOW_DESKTOP") {
if (isOn()) {
- ShowDesktop::the()->showDesktop(TRUE);
+ ShowDesktop::the()->showDesktop(true);
}
else {
- ShowDesktop::the()->showDesktop(FALSE);
+ ShowDesktop::the()->showDesktop(false);
}
}
else {
diff --git a/kicker/kicker/ui/k_mnu.cpp b/kicker/kicker/ui/k_mnu.cpp
index 80bf0e108..189e7e03e 100644
--- a/kicker/kicker/ui/k_mnu.cpp
+++ b/kicker/kicker/ui/k_mnu.cpp
@@ -77,7 +77,7 @@ PanelKMenu::PanelKMenu()
: PanelServiceMenu(TQString::null, TQString::null, 0, "KMenu")
, bookmarkMenu(0)
, bookmarkOwner(0)
- , displayRepaired(FALSE)
+ , displayRepaired(false)
{
static const TQCString dcopObjId("KMenu");
DCOPObject::setObjId(dcopObjId);
@@ -129,7 +129,7 @@ void PanelKMenu::hideMenu()
TQTimer *windowtimer = new TQTimer( this );
connect( windowtimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(windowClearTimeout()) );
windowTimerTimedOut = false;
- windowtimer->start( 0, TRUE ); // Wait for all window system events to be processed
+ windowtimer->start( 0, true ); // Wait for all window system events to be processed
while (windowTimerTimedOut == false)
tdeApp->eventLoop()->processEvents(TQEventLoop::ExcludeUserInput, 1000);
@@ -142,7 +142,7 @@ void PanelKMenu::hideMenu()
TQTimer *delaytimer = new TQTimer( this );
connect( delaytimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(windowClearTimeout()) );
windowTimerTimedOut = false;
- delaytimer->start( 100, TRUE ); // Wait for 100 milliseconds
+ delaytimer->start( 100, true ); // Wait for 100 milliseconds
while (windowTimerTimedOut == false)
tdeApp->eventLoop()->processEvents(TQEventLoop::ExcludeUserInput, 1000);
}
@@ -430,9 +430,9 @@ void PanelKMenu::initialize()
insertTearOffHandle();
#endif
- if (displayRepaired == FALSE) {
- displayRepairTimer->start(5, FALSE);
- displayRepaired = TRUE;
+ if (displayRepaired == false) {
+ displayRepairTimer->start(5, false);
+ displayRepaired = true;
}
setInitialized(true);
@@ -445,7 +445,7 @@ void PanelKMenu::repairDisplay(void) {
// Now do a nasty hack to prevent search bar merging into the side image
// This forces a layout/repaint of the qpopupmenu
repaint(); // This ensures that the side bar image was applied
- styleChange(style()); // This forces a call to the private function updateSize(TRUE) inside the qpopupmenu.
+ styleChange(style()); // This forces a call to the private function updateSize(true) inside the qpopupmenu.
update(); // This repaints the entire popup menu to apply the widget size/alignment changes made above
}
}
diff --git a/kicker/kicker/ui/k_new_mnu.cpp b/kicker/kicker/ui/k_new_mnu.cpp
index c7e347fb5..5549bcf42 100644
--- a/kicker/kicker/ui/k_new_mnu.cpp
+++ b/kicker/kicker/ui/k_new_mnu.cpp
@@ -1974,7 +1974,7 @@ void KMenu::searchChanged(const TQString & text)
if (input_timer->isActive ())
input_timer->stop ();
- input_timer->start (WAIT_BEFORE_QUERYING, TRUE);
+ input_timer->start (WAIT_BEFORE_QUERYING, true);
}
bool KMenu::dontQueryNow (const TQString& str)
@@ -2619,7 +2619,7 @@ TQString KMenu::iconForHitMenuItem(HitMenuItem *hit_item)
return (mimetype_iconstore [hit_item->mimetype]);
else {
KMimeType::Ptr mimetype_ptr = KMimeType::mimeType (hit_item->mimetype);
- TQString mimetype_icon = mimetype_ptr->icon(TQString(), FALSE);
+ TQString mimetype_icon = mimetype_ptr->icon(TQString(), false);
mimetype_iconstore [hit_item->mimetype] = mimetype_icon;
return mimetype_icon;
}
diff --git a/kicker/libkicker/panelbutton.cpp b/kicker/libkicker/panelbutton.cpp
index 9d97cdf8b..42e5286e2 100644
--- a/kicker/libkicker/panelbutton.cpp
+++ b/kicker/libkicker/panelbutton.cpp
@@ -225,10 +225,10 @@ void PanelButton::updateSettings(int category)
return;
}
- if (m_forceStandardCursor == FALSE)
+ if (!m_forceStandardCursor)
m_changeCursorOverItem = TDEGlobalSettings::changeCursorOverIcon();
else
- m_changeCursorOverItem = FALSE;
+ m_changeCursorOverItem = false;
if (m_changeCursorOverItem)
{
@@ -436,7 +436,7 @@ void PanelButton::startDrag()
void PanelButton::enterEvent(TQEvent* e)
{
- if (!m_highlight && m_disableHighlighting == FALSE)
+ if (!m_highlight && !m_disableHighlighting)
{
m_highlight = true;
repaint(false);
@@ -602,7 +602,7 @@ void PanelButton::drawDeepButton(TQPainter *p)
style().drawPrimitive(TQStyle::PE_ButtonBevel, p, btn_rect, colorGroup(), TQStyle::Style_Raised);
}
- drawButtonLabel(p,0,FALSE);
+ drawButtonLabel(p,0,false);
if (hasFocus() || m_hasAcceptedDrag)
{
@@ -616,7 +616,7 @@ void PanelButton::drawDeepButton(TQPainter *p)
void PanelButton::drawButtonLabel(TQPainter *p)
{
- drawButtonLabel(p,0,TRUE);
+ drawButtonLabel(p,0,true);
}
void PanelButton::drawButtonLabel(TQPainter *p, int voffset, bool drawArrow)
diff --git a/kicker/libkicker/panelbutton.h b/kicker/libkicker/panelbutton.h
index 15193c3bf..dda35d398 100644
--- a/kicker/libkicker/panelbutton.h
+++ b/kicker/libkicker/panelbutton.h
@@ -53,7 +53,7 @@ public:
* @param parent the parent widget
* @param name the widget's name
*/
- PanelButton( TQWidget* parent, const char* name, bool forceStandardCursor = FALSE );
+ PanelButton( TQWidget* parent, const char* name, bool forceStandardCursor = false );
/**
* Configures this button according to the user's preferences for
@@ -430,7 +430,7 @@ public:
* @param parent the parent widget
* @param name the widget's name
*/
- PanelPopupButton(TQWidget *parent=0, const char *name=0, bool forceStandardCursor = FALSE);
+ PanelPopupButton(TQWidget *parent=0, const char *name=0, bool forceStandardCursor = false);
/**
* Sets the button's popup menu.
diff --git a/kicker/libkicker/simplebutton.cpp b/kicker/libkicker/simplebutton.cpp
index a8387cbb6..6836e06eb 100644
--- a/kicker/libkicker/simplebutton.cpp
+++ b/kicker/libkicker/simplebutton.cpp
@@ -95,7 +95,7 @@ void SimpleButton::drawButton( TQPainter *p )
{
TQRect r(0, 0, width(), height());
- if (m_disableHighlighting == TRUE) {
+ if (m_disableHighlighting) {
if (m_highlight || isDown() || isOn()) {
int flags = TQStyle::Style_Default | TQStyle::Style_Enabled;
if (isDown() || isOn()) flags |= TQStyle::Style_Down;
@@ -115,13 +115,13 @@ void SimpleButton::drawButtonLabel( TQPainter *p )
TQPixmap pix = isEnabled() ? ((m_highlight&&(!m_disableHighlighting))? m_activeIcon : m_normalIcon) : m_disabledIcon;
- if ((isOn() || isDown()) && (m_disableHighlighting == FALSE))
+ if ((isOn() || isDown()) && !m_disableHighlighting)
{
pix = TQImage(pix.convertToImage()).smoothScale(pix.width() - 2,
pix.height() - 2);
}
- if (m_disableHighlighting == TRUE) {
+ if (m_disableHighlighting) {
pix = TQImage(pix.convertToImage()).smoothScale(pix.width() - 4,
pix.height() - 4);
}
@@ -171,10 +171,10 @@ void SimpleButton::slotSettingsChanged(int category)
}
bool changeCursor;
- if (m_forceStandardCursor == FALSE)
+ if (!m_forceStandardCursor)
changeCursor = TDEGlobalSettings::changeCursorOverIcon();
else
- changeCursor = FALSE;
+ changeCursor = false;
if (changeCursor)
{
diff --git a/kicker/libkicker/simplebutton.h b/kicker/libkicker/simplebutton.h
index ea91e6f91..9a7dce4e8 100644
--- a/kicker/libkicker/simplebutton.h
+++ b/kicker/libkicker/simplebutton.h
@@ -31,7 +31,7 @@ class TDE_EXPORT SimpleButton : public TQButton
TQ_OBJECT
public:
- SimpleButton(TQWidget *parent, const char *name = 0, bool forceStandardCursor = FALSE);
+ SimpleButton(TQWidget *parent, const char *name = 0, bool forceStandardCursor = false);
void setPixmap(const TQPixmap &pix);
void setOrientation(TQt::Orientation orientaton);
TQSize sizeHint() const;
@@ -66,7 +66,7 @@ class TDE_EXPORT SimpleArrowButton: public SimpleButton
TQ_OBJECT
public:
- SimpleArrowButton(TQWidget *parent = 0, TQt::ArrowType arrow = TQt::UpArrow, const char *name = 0, bool forceStandardCursor = FALSE);
+ SimpleArrowButton(TQWidget *parent = 0, TQt::ArrowType arrow = TQt::UpArrow, const char *name = 0, bool forceStandardCursor = false);
virtual ~SimpleArrowButton() {};
TQSize sizeHint() const;
diff --git a/kicker/taskbar/taskbarcontainer.cpp b/kicker/taskbar/taskbarcontainer.cpp
index 911ce8810..e9cc87979 100644
--- a/kicker/taskbar/taskbarcontainer.cpp
+++ b/kicker/taskbar/taskbarcontainer.cpp
@@ -65,10 +65,10 @@ TaskBarContainer::TaskBarContainer( bool enableFrame, TQString configFileOverrid
TQFile configFileObject(locateLocal("config", configFile));
if (!configFileObject.exists())
{
- TDEConfig globalConfig(GLOBAL_TASKBAR_CONFIG_FILE_NAME, TRUE, TRUE);
+ TDEConfig globalConfig(GLOBAL_TASKBAR_CONFIG_FILE_NAME, true, true);
TDEConfig localConfig(configFile);
globalConfig.copyTo(configFile, &localConfig);
- localConfig.writeEntry("UseGlobalSettings", TRUE);
+ localConfig.writeEntry("UseGlobalSettings", true);
localConfig.sync();
}
settingsObject = new TaskBarSettings(TDESharedConfig::openConfig(configFile));
diff --git a/kicker/taskbar/taskcontainer.cpp b/kicker/taskbar/taskcontainer.cpp
index bbb449a52..8e44f100f 100644
--- a/kicker/taskbar/taskcontainer.cpp
+++ b/kicker/taskbar/taskcontainer.cpp
@@ -117,7 +117,7 @@ bool is_process_resumable(pid_t pid) {
TQByteArray statRaw = procStatFile.readAll();
procStatFile.close();
TQString statString(statRaw);
- TQStringList statFields = TQStringList::split(" ", statString, TRUE);
+ TQStringList statFields = TQStringList::split(" ", statString, true);
TQString tcomm = statFields[1];
TQString state = statFields[2];
if( state == "T" ) {
diff --git a/kicker/taskmanager/taskrmbmenu.cpp b/kicker/taskmanager/taskrmbmenu.cpp
index c2c8a11bc..31c48d61c 100644
--- a/kicker/taskmanager/taskrmbmenu.cpp
+++ b/kicker/taskmanager/taskrmbmenu.cpp
@@ -117,7 +117,7 @@ void TaskRMBMenu::fillMenu(Task::Ptr t)
insertSeparator();
if (taskMoveMenu) {
- taskMoveMenu->reparent(this, taskMoveMenu->getWFlags(), taskMoveMenu->geometry().topLeft(), FALSE);
+ taskMoveMenu->reparent(this, taskMoveMenu->getWFlags(), taskMoveMenu->geometry().topLeft(), false);
insertItem(i18n("Move Task Button"), taskMoveMenu);
insertSeparator();
@@ -209,7 +209,7 @@ void TaskRMBMenu::fillMenu()
enable = false;
if (taskMoveMenu) {
- taskMoveMenu->reparent(this, taskMoveMenu->getWFlags(), taskMoveMenu->geometry().topLeft(), FALSE);
+ taskMoveMenu->reparent(this, taskMoveMenu->getWFlags(), taskMoveMenu->geometry().topLeft(), false);
insertItem(i18n("Move Task Button"), taskMoveMenu);
insertSeparator();