summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-17 16:16:56 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-17 16:18:37 +0000
commit7d040153e8929f4a5a3362f04cd25e6ddb4d9f2c (patch)
tree0f0949046c49af2ff8817689c4c5b6decdcccbf0 /sw/source
parentf7a7a5a686367aa775fef8d077bfdfec7b2fad82 (diff)
Resolves: fdo#61704 update on modify, not up/down/lose-focus
Change-Id: Ife98beb24d43f0e58f47c654ad8ef9605e5e3ffc
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/ui/frmdlg/column.cxx24
1 files changed, 6 insertions, 18 deletions
diff --git a/sw/source/ui/frmdlg/column.cxx b/sw/source/ui/frmdlg/column.cxx
index c58aa29217b8..82658bb125ad 100644
--- a/sw/source/ui/frmdlg/column.cxx
+++ b/sw/source/ui/frmdlg/column.cxx
@@ -479,30 +479,18 @@ SwColumnPage::SwColumnPage(Window *pParent, const SfxItemSet &rSet)
// announce Controls for additional region at the MoreButton
Link aCLNrLk = LINK(this, SwColumnPage, ColModify);
- m_pCLNrEdt->SetLoseFocusHdl(aCLNrLk);
- m_pCLNrEdt->SetUpHdl(aCLNrLk);
- m_pCLNrEdt->SetDownHdl(aCLNrLk);
+ m_pCLNrEdt->SetModifyHdl(aCLNrLk);
Link aLk = LINK(this, SwColumnPage, GapModify);
- aDistEd1.SetUpHdl(aLk);
- aDistEd1.SetDownHdl(aLk);
- aDistEd1.SetLoseFocusHdl(aLk);
- aDistEd2.SetUpHdl(aLk);
- aDistEd2.SetDownHdl(aLk);
- aDistEd2.SetLoseFocusHdl(aLk);
+ aDistEd1.SetModifyHdl(aLk);
+ aDistEd2.SetModifyHdl(aLk);
aLk = LINK(this, SwColumnPage, EdModify);
- aEd1.SetUpHdl(aLk);
- aEd1.SetDownHdl(aLk);
- aEd1.SetLoseFocusHdl(aLk);
+ aEd1.SetModifyHdl(aLk);
- aEd2.SetUpHdl(aLk);
- aEd2.SetDownHdl(aLk);
- aEd2.SetLoseFocusHdl(aLk);
+ aEd2.SetModifyHdl(aLk);
- aEd3.SetUpHdl(aLk);
- aEd3.SetDownHdl(aLk);
- aEd3.SetLoseFocusHdl(aLk);
+ aEd3.SetModifyHdl(aLk);
m_pBtnBack->SetClickHdl(LINK(this, SwColumnPage, Up));
m_pBtnNext->SetClickHdl(LINK(this, SwColumnPage, Down));