From 66eb95504294c475eda706c8e3f6701c4cdc640e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 17 Nov 2013 02:29:49 +0100 Subject: Cleanup TDELocale warning in kicker --- kicker/kicker/ui/service_mnu.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kicker/kicker/ui/service_mnu.cpp b/kicker/kicker/ui/service_mnu.cpp index ed8b4edda..c85c71312 100644 --- a/kicker/kicker/ui/service_mnu.cpp +++ b/kicker/kicker/ui/service_mnu.cpp @@ -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())); + } } } -- cgit v1.2.1