diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-05-30 14:27:29 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-06-25 16:29:01 +0900 |
| commit | a7f1e6e2552d9cdbb3d76bff089db522248b9a24 (patch) | |
| tree | 2e6dd07698083df817163d572443aaf6fdd26651 /tools/assistant/profile.cpp | |
| parent | 2584dba8aabfa2db8297dcfa258d33545ed6af43 (diff) | |
| download | tqt-a7f1e6e2552d9cdbb3d76bff089db522248b9a24.tar.gz tqt-a7f1e6e2552d9cdbb3d76bff089db522248b9a24.zip | |
Replace TRUE/FALSE with boolean values true/false - part 1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tools/assistant/profile.cpp')
| -rw-r--r-- | tools/assistant/profile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/assistant/profile.cpp b/tools/assistant/profile.cpp index a02170de7..b13b51687 100644 --- a/tools/assistant/profile.cpp +++ b/tools/assistant/profile.cpp @@ -50,7 +50,7 @@ Profile *Profile::createDefaultProfile( const TQString &docPath ) path = docPath; path = path + "/html/"; Profile *profile = new Profile; - profile->valid = TRUE; + profile->valid = true; profile->type = DefaultProfile; profile->props["name"] = "default"; profile->props["applicationicon"] = "appicon.png"; @@ -88,7 +88,7 @@ Profile *Profile::createDefaultProfile( const TQString &docPath ) Profile::Profile() - : valid( TRUE ), dparser( 0 ) + : valid( true ), dparser( 0 ) { } |
