diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kdesktop/KBackgroundIface.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdesktop/KBackgroundIface.h')
-rw-r--r-- | kdesktop/KBackgroundIface.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdesktop/KBackgroundIface.h b/kdesktop/KBackgroundIface.h index bd2a6ba05..47818021a 100644 --- a/kdesktop/KBackgroundIface.h +++ b/kdesktop/KBackgroundIface.h @@ -6,7 +6,7 @@ #define __KBackgroundIface_h__ #include <dcopobject.h> -#include <qcolor.h> +#include <tqcolor.h> class KBackgroundIface : virtual public DCOPObject { @@ -38,17 +38,17 @@ k_dcop: * @param desk desktop number, or 0 for the current visible desktop. * @param wallpaper The (local) path to the wallpaper. * @param mode The tiling mode. */ - virtual void setWallpaper(int desk, QString wallpaper, int mode) = 0; + virtual void setWallpaper(int desk, TQString wallpaper, int mode) = 0; /** Change the wallpaper. * @param wallpaper The (local) path to the wallpaper. * @param mode The tiling mode. */ - virtual void setWallpaper(QString wallpaper, int mode) = 0; + virtual void setWallpaper(TQString wallpaper, int mode) = 0; /** Set color. * @param c The color. * @param isColorA true for foreground and false for background color. */ - virtual void setColor(const QColor &c, bool isColorA) = 0; + virtual void setColor(const TQColor &c, bool isColorA) = 0; /** Change the wallpaper in "multi mode". */ virtual void changeWallpaper() = 0; @@ -59,17 +59,17 @@ k_dcop: /** Return the current wallpaper for specified desk. * @param desk desktop number, or 0 for the current visible desktop. */ - virtual QString currentWallpaper( int desk ) = 0; + virtual TQString currentWallpaper( int desk ) = 0; /** Return the wallpaper list for specified desk. * @param desk desktop number, or 0 for the current visible desktop. */ - virtual QStringList wallpaperList(int desk) = 0; + virtual TQStringList wallpaperList(int desk) = 0; /** Return the wallpaper files for specified desk. * @param desk desktop number, or 0 for the current visible desktop. */ - virtual QStringList wallpaperFiles(int desk) = 0; + virtual TQStringList wallpaperFiles(int desk) = 0; }; #endif // __KBackgroundIface_h__ |