summaryrefslogtreecommitdiffstats
path: root/tdehtml/misc/loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdehtml/misc/loader.h')
-rw-r--r--tdehtml/misc/loader.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tdehtml/misc/loader.h b/tdehtml/misc/loader.h
index c60c13a98..826759098 100644
--- a/tdehtml/misc/loader.h
+++ b/tdehtml/misc/loader.h
@@ -255,7 +255,7 @@ namespace tdehtml
*/
class CachedImage : public TQObject, public CachedObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
CachedImage(DocLoader* dl, const DOM::DOMString &url, TDEIO::CacheControl cachePolicy, const char* accept);
virtual ~CachedImage();
@@ -317,7 +317,7 @@ namespace tdehtml
TQPixmap* p;
TQPixmap* scaled;
TQPixmap* bg;
- QRgb bgColor;
+ TQRgb bgColor;
TQSize bgSize;
mutable TQPixmap* pixPart;
@@ -407,7 +407,7 @@ namespace tdehtml
*/
class Loader : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
Loader();
@@ -457,7 +457,7 @@ namespace tdehtml
* init the cache in case it's not already. This needs to get called once
* before using it.
*/
- KDE_EXPORT static void init();
+ TDE_EXPORT static void init();
/**
* Ask the cache for some url. Will return a cachedObject, and
@@ -481,14 +481,14 @@ namespace tdehtml
static void setSize( int bytes );
static int size() { return maxSize; };
static void statistics();
- KDE_EXPORT static void flush(bool force=false);
+ TDE_EXPORT static void flush(bool force=false);
/**
* clears the cache
* Warning: call this only at the end of your program, to clean
* up memory (useful for finding memory holes)
*/
- KDE_EXPORT static void clear();
+ TDE_EXPORT static void clear();
static Loader *loader() { return m_loader; }