diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-29 19:00:37 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-29 19:00:37 +0000 |
commit | 25794f504692e5a36c490438814e9dfda8aaa2dd (patch) | |
tree | 8061e6d27b5bc9042afdff177872779c4e8c9015 /src/kchmsourcefactory.h | |
parent | 35ff2a942f63b5201c04f41c3097e61cdd7817e9 (diff) | |
download | kchmviewer-25794f504692e5a36c490438814e9dfda8aaa2dd.tar.gz kchmviewer-25794f504692e5a36c490438814e9dfda8aaa2dd.zip |
TQt4 port kchmviewer
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kchmviewer@1234150 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kchmsourcefactory.h')
-rw-r--r-- | src/kchmsourcefactory.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kchmsourcefactory.h b/src/kchmsourcefactory.h index dd03968..2946253 100644 --- a/src/kchmsourcefactory.h +++ b/src/kchmsourcefactory.h @@ -22,19 +22,19 @@ #ifndef KCHMSOURCEFACTORY_H #define KCHMSOURCEFACTORY_H -#include <qmime.h> +#include <tqmime.h> #include "forwarddeclarations.h" /** @author Georgy Yunaev */ -class KCHMSourceFactory : public QMimeSourceFactory +class KCHMSourceFactory : public TQMimeSourceFactory { public: KCHMSourceFactory (KCHMViewWindow * viewwindow); - virtual const QMimeSource * data ( const QString & abs_name ) const; - virtual QString makeAbsolute ( const QString & abs_or_rel_name, const QString & context ) const; + virtual const TQMimeSource * data ( const TQString & abs_name ) const; + virtual TQString makeAbsolute ( const TQString & abs_or_rel_name, const TQString & context ) const; private: KCHMViewWindow * m_viewWindow; |