diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-18 17:00:31 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-18 17:00:31 +0000 |
commit | 395a904bff7b4d6ead445c342f7ac0c5fbf29121 (patch) | |
tree | 9829cadb79d2cc7c29a940627fadb28b11e54150 /noatun-plugins/oblique/oblique.h | |
parent | 399f47c376fdf4d19192732a701ea9578d11619d (diff) | |
download | tdeaddons-395a904bff7b4d6ead445c342f7ac0c5fbf29121.tar.gz tdeaddons-395a904bff7b4d6ead445c342f7ac0c5fbf29121.zip |
TQt4 port kdeaddons
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1237404 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/oblique/oblique.h')
-rw-r--r-- | noatun-plugins/oblique/oblique.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/noatun-plugins/oblique/oblique.h b/noatun-plugins/oblique/oblique.h index f7e6bc8..8755e55 100644 --- a/noatun-plugins/oblique/oblique.h +++ b/noatun-plugins/oblique/oblique.h @@ -1,8 +1,8 @@ // Copyright (c) 2003-2005 Charles Samuels <charles@kde.org> // See the file COPYING for redistribution terms. -#ifndef OBLIQUE_H -#define OBLIQUE_H +#ifndef OBLITQUE_H +#define OBLITQUE_H #include <noatun/playlist.h> #include <noatun/plugin.h> @@ -27,6 +27,7 @@ namespace KIO class Oblique : public Playlist, public Plugin { Q_OBJECT + TQ_OBJECT View *mView; Base *mBase; Selector *mSelector; @@ -86,9 +87,10 @@ private slots: /** * loads the database into a Tree **/ -class Loader : public QObject +class Loader : public TQObject { Q_OBJECT + TQ_OBJECT // the id of the next file to load FileId mDeferredLoaderAt; Tree *mTree; @@ -109,9 +111,10 @@ private slots: * emits @ref done() when finished so you * can delete it **/ -class DirectoryAdder : public QObject +class DirectoryAdder : public TQObject { Q_OBJECT + TQ_OBJECT Oblique *mOblique; KURL::List pendingAddDirectories; KURL::List::Iterator lastAddedSubDirectory; |