diff options
Diffstat (limited to 'client/shadow.h')
-rw-r--r-- | client/shadow.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/shadow.h b/client/shadow.h index 75d76f4..2ddfcca 100644 --- a/client/shadow.h +++ b/client/shadow.h @@ -34,9 +34,9 @@ #ifndef __FX_SHADOW #define __FX_SHADOW -#include <qpixmap.h> -#include <qimage.h> -#include <qcolor.h> +#include <tqpixmap.h> +#include <tqimage.h> +#include <tqcolor.h> class ShadowEngine { @@ -45,9 +45,9 @@ class ShadowEngine ~ShadowEngine(); void setThickness(int thickness) { thickness_ = thickness; } void setMultiplicationFactor(double factor) { multiplicationFactor_ = factor; } - QImage makeShadow(const QPixmap& textPixmap, const QColor &bgColor); + TQImage makeShadow(const TQPixmap& textPixmap, const TQColor &bgColor); private: - double decay(QImage& source, int x, int y); + double decay(TQImage& source, int x, int y); int thickness_; double multiplicationFactor_; |