diff options
-rw-r--r-- | vcl/inc/salwtype.hxx | 4 | ||||
-rw-r--r-- | vcl/source/window/winproc.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/salwtype.hxx b/vcl/inc/salwtype.hxx index 770c025bab21..4828f39c42db 100644 --- a/vcl/inc/salwtype.hxx +++ b/vcl/inc/salwtype.hxx @@ -176,9 +176,9 @@ struct SalExtTextInputEvent sal_uLong mnTime; // Time in ms, when event is created OUString maText; // Text const sal_uInt16* mpTextAttr; // Text-Attribute - sal_uLong mnCursorPos; // Cursor-Position + sal_Int32 mnCursorPos; // Cursor-Position sal_uInt8 mnCursorFlags; // EXTTEXTINPUT_CURSOR_xxx - sal_Bool mbOnlyCursor; // sal_True: Only Cursor-Position has been changed + bool mbOnlyCursor; // true: Only Cursor-Position has been changed }; // EXTTEXTINPUTPOS diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx index d42cb95654eb..e6d3d23b5101 100644 --- a/vcl/source/window/winproc.cxx +++ b/vcl/source/window/winproc.cxx @@ -1226,7 +1226,7 @@ static long ImplHandleKey( Window* pWindow, sal_uInt16 nSVEvent, static long ImplHandleExtTextInput( Window* pWindow, const OUString& rText, const sal_uInt16* pTextAttr, - sal_uLong nCursorPos, sal_uInt16 nCursorFlags ) + sal_Int32 nCursorPos, sal_uInt16 nCursorFlags ) { ImplSVData* pSVData = ImplGetSVData(); Window* pChild = NULL; |