By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1499
Collapse All | Expand All

(-)./kicker/kicker/ui/service_mnu.cpp.ORI (+18 lines)
Lines 27-32 Link Here
27
#include <tqpixmap.h>
27
#include <tqpixmap.h>
28
#include <tqimage.h>
28
#include <tqimage.h>
29
#include <tqmap.h>
29
#include <tqmap.h>
30
#include <tqtooltip.h>
30
31
31
#include <dcopclient.h>
32
#include <dcopclient.h>
32
#include <kapplication.h>
33
#include <kapplication.h>
Lines 70-75 Link Here
70
    connect(KSycoca::self(), TQT_SIGNAL(databaseChanged()),
71
    connect(KSycoca::self(), TQT_SIGNAL(databaseChanged()),
71
            TQT_SLOT(slotClearOnClose()));
72
            TQT_SLOT(slotClearOnClose()));
72
    connect(this, TQT_SIGNAL(aboutToHide()), this, TQT_SLOT(slotClose()));
73
    connect(this, TQT_SIGNAL(aboutToHide()), this, TQT_SLOT(slotClose()));
74
    connect(this, TQT_SIGNAL(highlighted(int)), this, TQT_SLOT(slotSetTooltip(int)));
73
}
75
}
74
76
75
PanelServiceMenu::~PanelServiceMenu()
77
PanelServiceMenu::~PanelServiceMenu()
Lines 1006-1008 Link Here
1006
    RecentlyLaunchedApps::the().m_bNeedToUpdate = true;
1008
    RecentlyLaunchedApps::the().m_bNeedToUpdate = true;
1007
}
1009
}
1008
1010
1011
void PanelServiceMenu::slotSetTooltip(int id)
1012
{
1013
    TQToolTip::remove(this);
1014
    if (entryMap_.contains(id) && entryMap_[id]->isType(KST_KService)) {
1015
        KService::Ptr s(static_cast<KService *>(entryMap_[id].data()));
1016
        TQString text;
1017
        if (!s->genericName().isEmpty()) {
1018
            text = s->genericName();
1019
        }
1020
        if (text.isEmpty() && !s->comment().isEmpty()) {
1021
          text = s->comment();
1022
	}
1023
        TQToolTip::add(this, i18n(text.utf8()));
1024
    }
1025
}
1026
(-)./kicker/kicker/ui/service_mnu.h.ORI (+1 lines)
Lines 81-86 Link Here
81
    virtual void slotClear();
81
    virtual void slotClear();
82
    virtual void configChanged();
82
    virtual void configChanged();
83
    virtual void slotClose();
83
    virtual void slotClose();
84
    void slotSetTooltip(int id);
84
    void slotDragObjectDestroyed();
85
    void slotDragObjectDestroyed();
85
86
86
    // for use in Add Applicaton To Panel
87
    // for use in Add Applicaton To Panel

Return to bug 1499