diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-15 18:49:06 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-15 18:58:23 +0900 |
commit | 1d318a47b0b45a7f916f526de60d628302cbfd4c (patch) | |
tree | 40e178533acb193432ab512d05eb3f03ff4a855c /src/kernel/qcursor_x11.cpp | |
parent | 67bff2edcacb208dc44dcd521386bef686dc6dbf (diff) | |
download | tqt3-1d318a47b0b45a7f916f526de60d628302cbfd4c.tar.gz tqt3-1d318a47b0b45a7f916f526de60d628302cbfd4c.zip |
Replace QT_STATIC_CONST_* with actual definitions
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/qcursor_x11.cpp')
-rw-r--r-- | src/kernel/qcursor_x11.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/kernel/qcursor_x11.cpp b/src/kernel/qcursor_x11.cpp index 9fd666397..f3b034da8 100644 --- a/src/kernel/qcursor_x11.cpp +++ b/src/kernel/qcursor_x11.cpp @@ -105,23 +105,23 @@ static TQCursor cursorTable[TQt::LastCursor+1]; static const int arrowCursorIdx = 0; -QT_STATIC_CONST_IMPL TQCursor & TQt::arrowCursor = cursorTable[0]; -QT_STATIC_CONST_IMPL TQCursor & TQt::upArrowCursor = cursorTable[1]; -QT_STATIC_CONST_IMPL TQCursor & TQt::crossCursor = cursorTable[2]; -QT_STATIC_CONST_IMPL TQCursor & TQt::waitCursor = cursorTable[3]; -QT_STATIC_CONST_IMPL TQCursor & TQt::ibeamCursor = cursorTable[4]; -QT_STATIC_CONST_IMPL TQCursor & TQt::sizeVerCursor = cursorTable[5]; -QT_STATIC_CONST_IMPL TQCursor & TQt::sizeHorCursor = cursorTable[6]; -QT_STATIC_CONST_IMPL TQCursor & TQt::sizeBDiagCursor = cursorTable[7]; -QT_STATIC_CONST_IMPL TQCursor & TQt::sizeFDiagCursor = cursorTable[8]; -QT_STATIC_CONST_IMPL TQCursor & TQt::sizeAllCursor = cursorTable[9]; -QT_STATIC_CONST_IMPL TQCursor & TQt::blankCursor = cursorTable[10]; -QT_STATIC_CONST_IMPL TQCursor & TQt::splitVCursor = cursorTable[11]; -QT_STATIC_CONST_IMPL TQCursor & TQt::splitHCursor = cursorTable[12]; -QT_STATIC_CONST_IMPL TQCursor & TQt::pointingHandCursor = cursorTable[13]; -QT_STATIC_CONST_IMPL TQCursor & TQt::forbiddenCursor = cursorTable[14]; -QT_STATIC_CONST_IMPL TQCursor & TQt::whatsThisCursor = cursorTable[15]; -QT_STATIC_CONST_IMPL TQCursor & TQt::busyCursor = cursorTable[16]; +const TQCursor & TQt::arrowCursor = cursorTable[0]; +const TQCursor & TQt::upArrowCursor = cursorTable[1]; +const TQCursor & TQt::crossCursor = cursorTable[2]; +const TQCursor & TQt::waitCursor = cursorTable[3]; +const TQCursor & TQt::ibeamCursor = cursorTable[4]; +const TQCursor & TQt::sizeVerCursor = cursorTable[5]; +const TQCursor & TQt::sizeHorCursor = cursorTable[6]; +const TQCursor & TQt::sizeBDiagCursor = cursorTable[7]; +const TQCursor & TQt::sizeFDiagCursor = cursorTable[8]; +const TQCursor & TQt::sizeAllCursor = cursorTable[9]; +const TQCursor & TQt::blankCursor = cursorTable[10]; +const TQCursor & TQt::splitVCursor = cursorTable[11]; +const TQCursor & TQt::splitHCursor = cursorTable[12]; +const TQCursor & TQt::pointingHandCursor = cursorTable[13]; +const TQCursor & TQt::forbiddenCursor = cursorTable[14]; +const TQCursor & TQt::whatsThisCursor = cursorTable[15]; +const TQCursor & TQt::busyCursor = cursorTable[16]; TQCursor *TQCursor::find_cur( int shape ) // find predefined cursor |