diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-26 12:35:07 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-26 12:35:07 +0000 |
commit | 096433a3719b2d2a075a80ae277e516cfe006c19 (patch) | |
tree | 94d7707f50b488f04f7a4ac1d0297fa17aa846e9 /svx | |
parent | 786b715d390a98ade7835d99b8b5909cbfe30d7e (diff) |
INTEGRATION: CWS fwk72 (1.17.66); FILE MERGED
2007/09/11 07:27:46 pb 1.17.66.1: fix: #i75210# hide controls if QuickStarter not installed
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/optmemory.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/svx/source/dialog/optmemory.cxx b/svx/source/dialog/optmemory.cxx index 37290fb976fc..71322714cab0 100644 --- a/svx/source/dialog/optmemory.cxx +++ b/svx/source/dialog/optmemory.cxx @@ -4,9 +4,9 @@ * * $RCSfile: optmemory.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: ihi $ $Date: 2007-11-23 16:42:04 $ + * last change: $Author: ihi $ $Date: 2007-11-26 13:35:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -334,8 +334,11 @@ void OfaMemoryOptionsPage::Reset( const SfxItemSet& rSet ) if ( SFX_ITEM_SET == eState ) aQuickLaunchCB.Check( ( (SfxBoolItem*)pItem )->GetValue() ); else if ( SFX_ITEM_DISABLED == eState ) + { // quickstart not installed - aQuickLaunchCB.Disable(); + aQuickLaunchFL.Hide(); + aQuickLaunchCB.Hide(); + } aQuickLaunchCB.SaveValue(); } |