SVN commit 427391 by mcamen: disable maybeTip() for now M +3 -2 nspanel.cpp M +3 -3 nspanel.h --- branches/work/kde4/kdeaddons/konq-plugins/sidebar/newsticker/nspanel.cpp #427390:427391 @@ -38,14 +38,14 @@ // ListBox including ToolTip for item //////////////////////////////////////////////////////////////// TTListBox::TTListBox(QWidget *parent, const char *name, Qt::WFlags f) - : KListBox(parent, name, f), - QToolTip(this) { + : KListBox(parent, name, f) /*, QToolTip(this) */ { } void TTListBox::clear() { KListBox::clear(); } +/* void TTListBox::maybeTip(const QPoint &point) { Q3ListBoxItem *item = itemAt(point); if (item) { @@ -60,6 +60,7 @@ } } } +*/ --- branches/work/kde4/kdeaddons/konq-plugins/sidebar/newsticker/nspanel.h #427390:427391 @@ -42,13 +42,13 @@ //////////////////////////////////////////////////////////////// // ListBox including ToolTip for item //////////////////////////////////////////////////////////////// - class TTListBox : public KListBox, QToolTip { + class TTListBox : public KListBox/*, QToolTip*/ { public: TTListBox (QWidget *parent = 0, const char *name = 0, Qt::WFlags f = 0); void clear(); - protected: - virtual void maybeTip(const QPoint &); + //protected: + // virtual void maybeTip(const QPoint &); };