diff options
Diffstat (limited to 'src/menuhandler.cpp')
-rw-r--r-- | src/menuhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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(); } |