diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:06:03 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-23 10:40:15 +0900 |
| commit | e7c7a00cc24697ba5ce25a236089608091975f5a (patch) | |
| tree | 85fb5906cd3c781cdb5f26b09920860e49e31bb4 /src/kvilib/ext | |
| parent | a2bd363864dea4771da98b4c6f7ba85ca75a3784 (diff) | |
| download | kvirc-e7c7a00c.tar.gz kvirc-e7c7a00c.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 291b4f5da2f98283b7c98ee90401df7c3cb34dad)
Diffstat (limited to 'src/kvilib/ext')
| -rw-r--r-- | src/kvilib/ext/kvi_regusersdb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kvilib/ext/kvi_regusersdb.h b/src/kvilib/ext/kvi_regusersdb.h index 6d587ba1..8b04fe8a 100644 --- a/src/kvilib/ext/kvi_regusersdb.h +++ b/src/kvilib/ext/kvi_regusersdb.h @@ -98,7 +98,7 @@ public: const TQString & getProperty(const TQString &name); // returns 0 if the property is not there bool getProperty(const TQString &name,TQString &value); // returns false if the property is not there - bool getBoolProperty(const TQString &name,bool def=FALSE); // returns true if the property is there and is true + bool getBoolProperty(const TQString &name,bool def=false); // returns true if the property is there and is true // the propertyDict may be 0! KviPointerHashTable<TQString,TQString> * propertyDict(){ return m_pPropertyDict; }; // this is never zero (but may contain no masks) |
