diff options
Diffstat (limited to 'karbon/core/vcursor.h')
-rw-r--r-- | karbon/core/vcursor.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/karbon/core/vcursor.h b/karbon/core/vcursor.h index 84c89648..90ab1673 100644 --- a/karbon/core/vcursor.h +++ b/karbon/core/vcursor.h @@ -20,14 +20,14 @@ #ifndef __VCURSOR_H__ #define __VCURSOR_H__ -#include <qcursor.h> +#include <tqcursor.h> #include <koffice_export.h> /** * A helper class for easily creating cursors from XPMs. * * One can create a predefined unthemed cursor or create a cursor from two given XMPs, -* the cursor bitmap and the cursor mask. +* the cursor bitmap and the cursor tqmask. */ class KARBONBASE_EXPORT VCursor { @@ -47,24 +47,24 @@ public: * @param type the requested cursor id * @return the predefined cursor */ - static QCursor createCursor( CursorType type ); + static TQCursor createCursor( CursorType type ); /** * Creates a cursor from two specified XPM images. - * This is only a wrapper function for a QCursor ctor. + * This is only a wrapper function for a TQCursor ctor. */ - static QCursor createCursor( const char * bitmap[], const char * mask[], int hotX = -1, int hotY = -1 ); + static TQCursor createCursor( const char * bitmap[], const char * tqmask[], int hotX = -1, int hotY = -1 ); /** crosshair cursor */ - static QCursor crossHair(); + static TQCursor crossHair(); /** needle arraow cursor */ - static QCursor needleArrow(); + static TQCursor needleArrow(); /** needle arrow with four way arrow */ - static QCursor needleMoveArrow(); + static TQCursor needleMoveArrow(); - static QCursor horzMove(); + static TQCursor horzMove(); private: // prevent instantiation |