diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
commit | 7346aee26bf190a7e70333c40fab4caca847cd27 (patch) | |
tree | 4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /konq-plugins/sidebar/delicious/mainWidget.h | |
parent | 23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff) | |
download | tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/sidebar/delicious/mainWidget.h')
-rw-r--r-- | konq-plugins/sidebar/delicious/mainWidget.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/konq-plugins/sidebar/delicious/mainWidget.h b/konq-plugins/sidebar/delicious/mainWidget.h index fdaa9ea..59be8d6 100644 --- a/konq-plugins/sidebar/delicious/mainWidget.h +++ b/konq-plugins/sidebar/delicious/mainWidget.h @@ -39,20 +39,20 @@ class MainWidget: public MainWidget_base { Q_OBJECT public: - MainWidget( KConfig * config, QWidget * parent ); + MainWidget( KConfig * config, TQWidget * parent ); ~MainWidget(); /** * @return all the tags user has * (used in the DCOP iface) */ - QStringList tags() const; + TQStringList tags() const; /** * @return all the (currently visible) bookmark (URLs) * (used in the DCOP iface) */ - QStringList bookmarks() const; + TQStringList bookmarks() const; /** * Set the internal URL to @p url @@ -92,22 +92,22 @@ private slots: /** * Handle clicking on a bookmark (KDE mode) */ - void slotBookmarkExecuted( QListViewItem * item ); + void slotBookmarkExecuted( TQListViewItem * item ); /** * Handle middle clicking a bookmark */ - void slotBookmarkClicked( int button, QListViewItem * item, const QPoint & pnt, int col ); + void slotBookmarkClicked( int button, TQListViewItem * item, const TQPoint & pnt, int col ); /** * Popup a tag context menu over @p item and position @pos */ - void slotTagsContextMenu( QListViewItem * item, const QPoint & pos, int col ); + void slotTagsContextMenu( TQListViewItem * item, const TQPoint & pos, int col ); /** * Popup a bookmark context menu over @p item and position @pos */ - void slotBookmarksContextMenu( QListViewItem * item, const QPoint & pos, int col ); + void slotBookmarksContextMenu( TQListViewItem * item, const TQPoint & pos, int col ); /** * Put a checkmark before all tags @@ -154,7 +154,7 @@ private: /** * @return list of checked tags */ - QStringList checkedTags() const; + TQStringList checkedTags() const; /** * Save the tag list to the config file @@ -166,9 +166,9 @@ private: */ void loadTags(); - QTimer *m_updateTimer; + TQTimer *m_updateTimer; KURL m_currentURL; - QStringList m_tags; + TQStringList m_tags; KConfig * m_config; }; |