diff options
Diffstat (limited to 'tqtinterface/qt4/src/kernel/tqcursor_x11.cpp')
-rw-r--r-- | tqtinterface/qt4/src/kernel/tqcursor_x11.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tqtinterface/qt4/src/kernel/tqcursor_x11.cpp b/tqtinterface/qt4/src/kernel/tqcursor_x11.cpp index 36f2504..aac3336 100644 --- a/tqtinterface/qt4/src/kernel/tqcursor_x11.cpp +++ b/tqtinterface/qt4/src/kernel/tqcursor_x11.cpp @@ -302,7 +302,7 @@ TQT_STATIC_CONST_IMPL TQCursor & TQt::whatsThisCursor = cursorTable[15]; TQT_STATIC_CONST_IMPL TQCursor & TQt::busyCursor = cursorTable[16]; -TQCursor *TQCursor::tqfind_cur( int tqshape ) // tqfind predefined cursor +TQCursor *TQCursor::find_cur( int tqshape ) // find predefined cursor { return (uint)tqshape <= LastCursor ? &cursorTable[tqshape] : 0; } @@ -379,7 +379,7 @@ TQCursor::TQCursor( int tqshape ) { if ( !initialized ) initialize(); - TQCursor *c = tqfind_cur( tqshape ); + TQCursor *c = find_cur( tqshape ); if ( !c ) // not found c = &cursorTable[arrowCursorIdx]; // then use arrowCursor c->data->ref(); @@ -504,7 +504,7 @@ void TQCursor::setShape( int tqshape ) { if ( !initialized ) initialize(); - TQCursor *c = tqfind_cur( tqshape ); // tqfind one of the global ones + TQCursor *c = find_cur( tqshape ); // find one of the global ones if ( !c ) // not found c = &cursorTable[arrowCursorIdx]; // then use arrowCursor c->data->ref(); |