diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:28:35 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:40:11 +0900 |
| commit | 3233d6a066667673e676dee95db7ca1419087018 (patch) | |
| tree | ef8462b8cce8e3cd60aa3121011b8cbb05ad6542 /plugins/strigi | |
| parent | 29aac93d751ef6b7aa721321df8b94679813916e (diff) | |
| download | kbfx-3233d6a066667673e676dee95db7ca1419087018.tar.gz kbfx-3233d6a066667673e676dee95db7ca1419087018.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'plugins/strigi')
| -rw-r--r-- | plugins/strigi/kbfxstrigiplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/strigi/kbfxstrigiplugin.cpp b/plugins/strigi/kbfxstrigiplugin.cpp index fbaff4b..11030ca 100644 --- a/plugins/strigi/kbfxstrigiplugin.cpp +++ b/plugins/strigi/kbfxstrigiplugin.cpp @@ -145,7 +145,7 @@ search ( TQString _keyword ) socket.setSocketPath ( ( const char * ) socketpath.utf8 () ); bool ok = socket.query ( _keyword.ascii (), 5, 0 ); - if ( ok == true ) + if ( ok ) { while ( !socket.statusChanged () ) { |
