diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-03 04:12:51 +0000 |
commit | 560378aaca1784ba19806a0414a32b20c744de39 (patch) | |
tree | ce0dfd7c3febf2a1adc7603d1019a8be2083c415 /khtml/misc/loader.h | |
parent | d4d5af1cdbd3cc65d095e0afc5b1f4260091cf5d (diff) | |
download | tdelibs-560378aaca1784ba19806a0414a32b20c744de39.tar.gz tdelibs-560378aaca1784ba19806a0414a32b20c744de39.zip |
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/misc/loader.h')
-rw-r--r-- | khtml/misc/loader.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/khtml/misc/loader.h b/khtml/misc/loader.h index 4314e950e..2e62e7f39 100644 --- a/khtml/misc/loader.h +++ b/khtml/misc/loader.h @@ -91,7 +91,7 @@ namespace khtml Script }; - enum Status { + enum tqStatus { Unknown, // let imagecache decide what to do with it New, // inserting new image Pending, // only partially loaded @@ -127,8 +127,8 @@ namespace khtml int count() const { return m_clients.count(); } int accessCount() const { return m_accessCount; } - void setStatus(Status s) { m_status = s; } - Status status() const { return m_status; } + void setStatus(tqStatus s) { m_status = s; } + tqStatus status() const { return m_status; } virtual void setCharset( const TQString& /*charset*/ ) {} @@ -167,7 +167,7 @@ namespace khtml TQString m_accept; Request *m_request; Type m_type; - Status m_status; + tqStatus m_status; int m_accessCount; KIO::CacheControl m_cachePolicy; time_t m_expireDate; @@ -302,7 +302,7 @@ namespace khtml * gets called, whenever a TQMovie changes frame */ void movieUpdated( const TQRect &rect ); - void movieStatus(int); + void movietqStatus(int); void movieResize(const TQSize&); void deleteMovie(); @@ -405,7 +405,7 @@ namespace khtml /** * @internal */ - class Loader : public QObject + class Loader : public TQObject { Q_OBJECT @@ -486,7 +486,7 @@ namespace khtml /** * clears the cache * Warning: call this only at the end of your program, to clean - * up memory (useful for finding memory holes) + * up memory (useful for tqfinding memory holes) */ KDE_EXPORT static void clear(); |