diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-03-25 20:03:28 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-03-25 20:03:28 +0100 |
commit | 2ee99ab520931c5efe91123c85ba10064a45e95d (patch) | |
tree | a367666e410de28d0f258aed77b11e17cafb28e4 /sidebar/baghirasidebar.h | |
parent | cfa36e1a95e82492c17225ff376911abb3688f62 (diff) | |
download | tde-style-baghira-2ee99ab520931c5efe91123c85ba10064a45e95d.tar.gz tde-style-baghira-2ee99ab520931c5efe91123c85ba10064a45e95d.zip |
Initial TQt conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
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); |