diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-22 14:28:03 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-23 10:07:10 +0900 |
commit | 39876d710881d647fd0d755d31b620a7214cf9ff (patch) | |
tree | 0affcc87388c3f41ff8a5013910f9e35cd0da0a9 /src/logviewerdialog.cpp | |
parent | f45740dc476004d43e63d94b746239e77dfef19e (diff) | |
download | kvpnc-r14.1.4.tar.gz kvpnc-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b1606f1200c833b5a0896d6bfe08db8db8c6d81e)
Diffstat (limited to 'src/logviewerdialog.cpp')
-rw-r--r-- | src/logviewerdialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/logviewerdialog.cpp b/src/logviewerdialog.cpp index a24815c..f98573c 100644 --- a/src/logviewerdialog.cpp +++ b/src/logviewerdialog.cpp @@ -194,26 +194,26 @@ void LogViewerDialog::showLogPart(int start,int count, bool parseLogType) { if (parseLogType) { - if (line.find(i18n("Info:"),0, FALSE) > -1 ) + if (line.find(i18n("Info:"),0, false) > -1 ) { type = KVpncConfig::info; } - else if (line.find(i18n("Debug:"),0, FALSE) > -1 ) + else if (line.find(i18n("Debug:"),0, false) > -1 ) { type = KVpncConfig::debug; } // else - // if (line.find("remote",0, FALSE) > -1 ) + // if (line.find("remote",0, false) > -1 ) // { // type = KVpncConfig::remote; // } else - if (line.find(i18n("Error:"),0, FALSE) > -1 ) + if (line.find(i18n("Error:"),0, false) > -1 ) { type = KVpncConfig::error; } // else - // if (line.find("success",0, FALSE) > -1 ) + // if (line.find("success",0, false) > -1 ) // { // type = KVpncConfig::success; // } |