diff options
author | Juergen Funk <juergen.funk_ml@cib.de> | 2014-09-30 15:59:06 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2014-09-30 14:13:44 +0000 |
commit | e98e9fda34736731e4c539b1799abb4257219988 (patch) | |
tree | 8ce5d8946efabdd452f52d2e232d7491cc9db1b0 | |
parent | bda9193e7bb7c1315e79b904bff3c42abd81159f (diff) |
fdo#38884 Fix setting X position with dbgutil enabled
When the dbgutil switch is set, the code is not inline
but in the cxx-file.
Change-Id: I5a6aeb3c28c4567cfc97baccfb4872b056db609b
Reviewed-on: https://gerrit.libreoffice.org/11717
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
-rw-r--r-- | sw/source/core/crsr/crsrsh.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/crsr/crsrsh.cxx b/sw/source/core/crsr/crsrsh.cxx index 9016534fb01a..0a1cdf8966f9 100644 --- a/sw/source/core/crsr/crsrsh.cxx +++ b/sw/source/core/crsr/crsrsh.cxx @@ -325,7 +325,7 @@ void SwCrsrShell::SttCrsrMove() void SwCrsrShell::EndCrsrMove( const bool bIdleEnd ) { OSL_ENSURE( m_nCrsrMove, "EndCrsrMove() without SttCrsrMove()." ); - EndAction( bIdleEnd ); + EndAction( bIdleEnd, true ); if( !--m_nCrsrMove ) m_bInCMvVisportChgd = false; } |