diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/ksharedpixmap.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/ksharedpixmap.h')
-rw-r--r-- | kdeui/ksharedpixmap.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdeui/ksharedpixmap.h b/kdeui/ksharedpixmap.h index 49e5da667..a4f4eb88c 100644 --- a/kdeui/ksharedpixmap.h +++ b/kdeui/ksharedpixmap.h @@ -18,9 +18,9 @@ #ifdef Q_WS_X11 -#include <qstring.h> -#include <qpixmap.h> -#include <qwidget.h> +#include <tqstring.h> +#include <tqpixmap.h> +#include <tqwidget.h> class KSharedPixmapPrivate; @@ -41,7 +41,7 @@ class KSharedPixmapPrivate; * An example: copy from a shared pixmap: * \code * KSharedPixmap *pm = new KSharedPixmap; - * connect(pm, SIGNAL(done(bool)), SLOT(slotDone(bool))); + * connect(pm, TQT_SIGNAL(done(bool)), TQT_SLOT(slotDone(bool))); * pm->loadFromShared("My Pixmap"); * \endcode * @@ -50,7 +50,7 @@ class KSharedPixmapPrivate; * */ class KDEUI_EXPORT KSharedPixmap: - public QWidget, + public TQWidget, public KPixmap { Q_OBJECT @@ -80,7 +80,7 @@ public: * @return True if the shared pixmap exists and loading has started * successfully, false otherwise. */ - bool loadFromShared(const QString & name, const QRect & rect=QRect()); + bool loadFromShared(const TQString & name, const TQRect & rect=TQRect()); /** * Check whether a shared pixmap is available. @@ -88,7 +88,7 @@ public: * @param name The shared pixmap name. * @return True if the shared pixmap is available, false otherwise. */ - bool isAvailable(const QString & name) const; + bool isAvailable(const TQString & name) const; signals: /** @@ -102,7 +102,7 @@ protected: bool x11Event(XEvent *); private: - bool copy(const QString & id, const QRect & rect); + bool copy(const TQString & id, const TQRect & rect); void init(); KSharedPixmapPrivate *d; |