From a09cecfffd5151adfc50e343c821ed8ebdd1ab87 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 20 Feb 2026 23:38:28 +0900 Subject: Some generic fixes required for future cmake conversion Signed-off-by: Michele Calgaro --- src/modules/help/index.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/help') 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() ) -- cgit v1.2.3