Cleanup TDELocale warning in kicker

pull/2/head
Slávek Banko 11 years ago
parent 7a8b0da20f
commit 66eb955042

@ -1020,7 +1020,9 @@ void PanelServiceMenu::slotSetTooltip(int id)
if (text.isEmpty() && !s->comment().isEmpty()) {
text = s->comment();
}
TQToolTip::add(this, i18n(text.utf8()));
if (!text.isEmpty()) {
TQToolTip::add(this, i18n(text.utf8()));
}
}
}

Loading…
Cancel
Save