diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-02-20 23:38:28 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-02-22 20:26:55 +0900 |
| commit | a09cecfffd5151adfc50e343c821ed8ebdd1ab87 (patch) | |
| tree | 41b97f6dfceb7170df01f9d1aa7aeb5e01103e20 /src/modules/help/index.cpp | |
| parent | c4566646d9e7c8e69c28e445d5006ab1d881df41 (diff) | |
| download | kvirc-a09cecfffd5151adfc50e343c821ed8ebdd1ab87.tar.gz kvirc-a09cecfffd5151adfc50e343c821ed8ebdd1ab87.zip | |
Some generic fixes required for future cmake conversion
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/help/index.cpp')
| -rw-r--r-- | src/modules/help/index.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/help/index.cpp b/src/modules/help/index.cpp index 82c5f575..2d6dbf09 100644 --- a/src/modules/help/index.cpp +++ b/src/modules/help/index.cpp @@ -134,7 +134,7 @@ void Index::setupDocumentList() void Index::insertInDict( const TQString &str, int docNum ) { - if ( strcmp( str, "amp" ) == 0 || strcmp( str, "nbsp" ) == 0 ) + if ( str == "amp" || str == "nbsp" ) return; Entry *e = 0; if ( dict.count() ) |
