diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-19 08:43:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-19 08:43:02 +0100 |
commit | 06b8cdc503e021a644219a064503433482d98d48 (patch) | |
tree | 05081288c521c29b21c5fd80f1cd185d11621f1d /sw | |
parent | e20ebf2653bdd42e90ae97f1e77aa4591907b882 (diff) |
SetMaxWidthInChars -> SetMinWidthInChars
Change-Id: Ie7b6f8c07beb5895a1437e3da1cc57084e1da114
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/cctrl/actctrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/cctrl/actctrl.cxx b/sw/source/ui/cctrl/actctrl.cxx index 18c2ac42fa1e..6300fee3b15e 100644 --- a/sw/source/ui/cctrl/actctrl.cxx +++ b/sw/source/ui/cctrl/actctrl.cxx @@ -129,7 +129,7 @@ void ReturnActionEdit::KeyInput( const KeyEvent& rEvt) extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeTableNameEdit(Window *pParent, VclBuilder::stringmap &) { TableNameEdit* pTableNameEdit = new TableNameEdit(pParent); - pTableNameEdit->SetMaxWidthInChars(25); + pTableNameEdit->SetMinWidthInChars(25); return pTableNameEdit; } |