diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-14 09:37:00 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-14 09:40:29 +0200 |
commit | 31d81f87dd8f6aef1eceac4989e77a7cc6a1bc57 (patch) | |
tree | 8d54e013c79e16c1ff5e1a11138291376032cc75 /svx/source/fmcomp | |
parent | 460ad501c8b640f52aef2fc0dd5034b41651a9f5 (diff) |
fdo#52179 on copy kb-shortcut, from *current* row, not last painted row (!)
Change-Id: I39be862abb7c72234adad9c517d4a0570a1d71ae
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/gridctrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx index 33a464e88492..aff76d1fe0d1 100644 --- a/svx/source/fmcomp/gridctrl.cxx +++ b/svx/source/fmcomp/gridctrl.cxx @@ -3394,7 +3394,7 @@ void DbGridControl::KeyInput( const KeyEvent& rEvt ) { size_t Location = GetModelColumnPos( nColId ); DbGridColumn* pColumn = ( Location < m_aColumns.size() ) ? m_aColumns[ Location ] : NULL; - OStringTransfer::CopyString( GetCurrentRowCellText( pColumn,m_xPaintRow ), this ); + OStringTransfer::CopyString( GetCurrentRowCellText( pColumn, m_xCurrentRow ), this ); return; } } |