diff options
author | Peter Burow <pb@openoffice.org> | 2001-10-11 04:51:17 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2001-10-11 04:51:17 +0000 |
commit | fc29c231471386daba48233a6ce1435e72a01fa8 (patch) | |
tree | ee753595cdc691216aab56b3eafd518402d38919 /svx/source/dialog/chardlg.cxx | |
parent | a15f56864e8ed15717cdada8f0430277f99c301e (diff) |
fix: #92733# dont put kerning item if edit is disabled
Diffstat (limited to 'svx/source/dialog/chardlg.cxx')
-rw-r--r-- | svx/source/dialog/chardlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/chardlg.cxx b/svx/source/dialog/chardlg.cxx index 0fe7893fe6b6..aced045d068e 100644 --- a/svx/source/dialog/chardlg.cxx +++ b/svx/source/dialog/chardlg.cxx @@ -2,9 +2,9 @@ * * $RCSfile: chardlg.cxx,v $ * - * $Revision: 1.62 $ + * $Revision: 1.63 $ * - * last change: $Author: gt $ $Date: 2001-10-10 08:55:40 $ + * last change: $Author: pb $ $Date: 2001-10-11 05:51:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -3249,7 +3249,7 @@ BOOL SvxCharPositionPage::FillItemSet( SfxItemSet& rSet ) if ( !bChanged && ( m_aKerningLB.GetSavedValue() == LISTBOX_ENTRY_NOTFOUND || - !m_aKerningEdit.GetSavedValue().Len() ) ) + ( !m_aKerningEdit.GetSavedValue().Len() && m_aKerningEdit.IsEnabled() ) ) ) bChanged = TRUE; if ( bChanged && nPos != LISTBOX_ENTRY_NOTFOUND ) |