From 2a7cf2dd00e5106e8287239f9d4ac17287ecd84f Mon Sep 17 00:00:00 2001 From: Slávek Banko Date: Sat, 9 Feb 2019 16:06:12 +0100 Subject: Added controlled conversions to char* instead of automatic ascii conversions. The definition of -UTQT_NO_ASCII_CAST is no longer needed. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- src/menuhandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/menuhandler.cpp') diff --git a/src/menuhandler.cpp b/src/menuhandler.cpp index d3a4a79..2c4f29c 100644 --- a/src/menuhandler.cpp +++ b/src/menuhandler.cpp @@ -845,9 +845,9 @@ void MenuHandler::populateList( KServiceGroup *serviceGroup, TastyListView *list TQString subText= TQString(); if( !isSeparator ) { - if( s->comment() != NULL && !s->comment().isEmpty() ) + if( !s->comment().isNull() && !s->comment().isEmpty() ) subText = s->comment(); - else if( s->genericName() && !s->genericName().isEmpty() ) + else if( !s->genericName().isNull() && !s->genericName().isEmpty() ) subText = s->genericName(); } -- cgit v1.2.3