diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-12 20:25:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-13 09:50:10 +0000 |
commit | 9ceccaaa4d7d475c7d5d0800805ac94c5a965765 (patch) | |
tree | b9c9e9df521e8a7d7998dea4564983839bac1f5f | |
parent | cd4a1e79cdb36eb63f0fad6e6657fbcb63d4008e (diff) |
longparas: xub_StrLen to sal_Int32
Change-Id: I93af34cd936510ee14ca1eead55a7abc3036554b
-rw-r--r-- | vcl/source/control/edit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx index 48d5dc7763a1..dcf15199d7d9 100644 --- a/vcl/source/control/edit.cxx +++ b/vcl/source/control/edit.cxx @@ -101,7 +101,7 @@ struct DDInfo { Cursor aCursor; Selection aDndStartSel; - xub_StrLen nDropPos; + sal_Int32 nDropPos; bool bStarterOfDD; bool bDroppedInMe; bool bVisCursor; @@ -3165,7 +3165,7 @@ void Edit::dragOver( const ::com::sun::star::datatransfer::dnd::DropTargetDragEv Point aMousePos( rDTDE.LocationX, rDTDE.LocationY ); - xub_StrLen nPrevDropPos = mpDDInfo->nDropPos; + sal_Int32 nPrevDropPos = mpDDInfo->nDropPos; mpDDInfo->nDropPos = ImplGetCharPos( aMousePos ); /* |