From kde-commits Wed Jul 05 19:08:13 2006 From: Eva Brucherseifer Date: Wed, 05 Jul 2006 19:08:13 +0000 To: kde-commits Subject: kdenox/konq-embed/dropin/kio Message-Id: <1152126493.902273.14988.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=115212652404751 SVN commit 558650 by eva: made it compile with qte3 too M +0 -3 mimehandler.cpp M +0 -6 mimehandler.h --- trunk/kdenox/konq-embed/dropin/kio/mimehandler.cpp #558649:558650 @@ -180,9 +180,6 @@ for ( ; pumpData(); ); } -#if (QT_VERSION >= 0x030000) -QPtrList s_handlers; -#endif const MimeHandler* MimeHandler::Find( const QString &type ) { --- trunk/kdenox/konq-embed/dropin/kio/mimehandler.h #558649:558650 @@ -4,13 +4,11 @@ #include #include -#if (QT_VERSION < 0x030000) namespace KIO { class MimeHandler; } static QPtrList s_handlers; -#endif namespace KIO @@ -91,10 +89,6 @@ virtual int Matches( const KURL &url ) const; virtual bool Matches( const QByteArray &/*data*/ ) const { return false; } QStringList m_types; - -#if (QT_VERSION >= 0x030000) - static QPtrList s_handlers; -#endif };