diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 21:04:57 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 21:04:57 +0000 |
commit | bf7f88413be3831a9372d323d02fc0335b9f9188 (patch) | |
tree | 516fdef9206245b40a14f99b4e3d9ef9289196e0 /src/app/history.h | |
parent | e238aa77b1fb3c2f55aef2ef2c91ce52166d2cc8 (diff) | |
download | gwenview-bf7f88413be3831a9372d323d02fc0335b9f9188.tar.gz gwenview-bf7f88413be3831a9372d323d02fc0335b9f9188.zip |
TQt4 port Gwenview
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gwenview@1233720 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/app/history.h')
-rw-r--r-- | src/app/history.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/app/history.h b/src/app/history.h index 1d4685a..8630cfe 100644 --- a/src/app/history.h +++ b/src/app/history.h @@ -22,9 +22,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifndef HISTORY_H #define HISTORY_H -// Qt -#include <qobject.h> -#include <qvaluelist.h> +// TQt +#include <tqobject.h> +#include <tqvaluelist.h> // KDE #include <kurl.h> @@ -32,11 +32,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. class KToolBarPopupAction; class KActionCollection; -typedef QValueList<KURL> HistoryList; +typedef TQValueList<KURL> HistoryList; namespace Gwenview { -class History : public QObject { +class History : public TQObject { Q_OBJECT + TQ_OBJECT public: History(KActionCollection*); |