summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-04-04 13:24:21 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-04 13:27:16 +0900
commite896e34d4351ede7c3ee9a8f35dde992cf0790ef (patch)
tree1fa051b23868032b7a12448a827d1e8d085fef9c
parent0b1a1ab8998a961fcf1351c9647b16e05c99a841 (diff)
downloadpolkit-tqt-e896e34d4351ede7c3ee9a8f35dde992cf0790ef.tar.gz
polkit-tqt-e896e34d4351ede7c3ee9a8f35dde992cf0790ef.zip
Replace TRUE/FALSE with boolean values true/falseHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--examples/PkExample.cpp2
-rw-r--r--gui/polkit-tqt-gui-action.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/PkExample.cpp b/examples/PkExample.cpp
index f329af699..58023c49a 100644
--- a/examples/PkExample.cpp
+++ b/examples/PkExample.cpp
@@ -88,7 +88,7 @@ PkExample::PkExample() : TQMainWindow(nullptr, "Polkit tqt example application",
grid->addWidget(deletePB, 5, 1);
deleteL_2 = new TQLabel(privateLayoutWidget, "deleteL_2");
- setCB = new TQComboBox(FALSE, privateLayoutWidget, "setCB");
+ setCB = new TQComboBox(false, privateLayoutWidget, "setCB");
grid->addMultiCellWidget(deleteL_2, 6, 7, 0, 0);
grid->addWidget(setCB, 6, 1);
diff --git a/gui/polkit-tqt-gui-action.cpp b/gui/polkit-tqt-gui-action.cpp
index fad976681..ee14921ef 100644
--- a/gui/polkit-tqt-gui-action.cpp
+++ b/gui/polkit-tqt-gui-action.cpp
@@ -216,7 +216,7 @@ bool Action::activate()
if (d->noEnabled)
{
/* If PolicyKit says no... and we got here.. it means
- * that the user set the property "no-enabled" to TRUE..
+ * that the user set the property "no-enabled" to true..
* Hence, they probably have a good reason for doing
* this so do let the 'activate' signal propagate..
*/