diff options
Diffstat (limited to 'sidebar/baghirasidebar.h')
-rw-r--r-- | sidebar/baghirasidebar.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sidebar/baghirasidebar.h b/sidebar/baghirasidebar.h index dae8fc5..d0b9929 100644 --- a/sidebar/baghirasidebar.h +++ b/sidebar/baghirasidebar.h @@ -11,7 +11,7 @@ class LinkView; class KListBox; -class QListBoxItem; +class TQListBoxItem; class baghiraSidebar : public KonqSidebarPlugin { @@ -25,22 +25,22 @@ public: * @param parent The sidebar internal button info class responsible for this plugin. * @param widgetParent The container which will contain the plugins widget. * @param desktopName The filename of the configuration file. - * @param name A Qt object name for your plugin. + * @param name A TQt object name for your plugin. **/ - baghiraSidebar(KInstance *inst,QObject *parent, QWidget *widgetParent, QString &desktopName, const char* name=0); + baghiraSidebar(KInstance *inst,TQObject *parent, TQWidget *widgetParent, TQString &desktopName, const char* name=0); /** destructor */ ~baghiraSidebar(); - virtual QWidget *getWidget(){return scrollView;} - virtual void *provides(const QString &) {return 0;} + virtual TQWidget *getWidget(){return scrollView;} + virtual void *provides(const TQString &) {return 0;} protected: LinkView *scrollView; virtual void handleURL(const KURL &url); private slots: - void callURL(QListBoxItem *); + void callURL(TQListBoxItem *); signals: void openURLRequest(const KURL &url, const KParts::URLArgs &args); |