diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /klipper/klipperpopup.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'klipper/klipperpopup.h')
-rw-r--r-- | klipper/klipperpopup.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/klipper/klipperpopup.h b/klipper/klipperpopup.h index f77b87954..50ca55938 100644 --- a/klipper/klipperpopup.h +++ b/klipper/klipperpopup.h @@ -21,8 +21,8 @@ #define _KLIPPERPOPUP_H_ #include <kpopupmenu.h> -#include <qptrlist.h> -#include <qstring.h> +#include <tqptrlist.h> +#include <tqstring.h> class History; class KlipperWidget; @@ -40,7 +40,7 @@ class KlipperPopup : public KPopupMenu Q_OBJECT public: - KlipperPopup( History* history, QWidget* parent=0, const char* name=0 ); + KlipperPopup( History* history, TQWidget* parent=0, const char* name=0 ); ~KlipperPopup(); void plugAction( KAction* action ); @@ -59,14 +59,14 @@ public slots: void slotAboutToShow(); private: - void rebuild( const QString& filter = QString::null ); + void rebuild( const TQString& filter = TQString::null ); void buildFromScratch(); void insertSearchFilter(); void removeSearchFilter(); protected: - virtual void keyPressEvent( QKeyEvent* e ); + virtual void keyPressEvent( TQKeyEvent* e ); private: bool m_dirty : 1; // true if menu contents needs to be rebuild. @@ -74,13 +74,13 @@ private: /** * Contains the string shown if the menu is empty. */ - QString QSempty; + TQString QSempty; /** * Contains the string shown if the search string has no * matches and the menu is not empty. */ - QString QSnomatch; + TQString QSnomatch; /** * The "document" (clipboard history) @@ -95,7 +95,7 @@ private: /** * (unowned) actions to plug into the primary popup menu */ - QPtrList<KAction> m_actions; + TQPtrList<KAction> m_actions; /** * Proxy helper object used to track history items |