summaryrefslogtreecommitdiffstats
path: root/svx/source/form
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-12-07 12:19:33 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-12-07 12:19:33 +0100
commit794b301edcb9e8b52925c35ddeed71d1576dc72a (patch)
treeecf871bc735c43c9a705a322c359737c92e1d335 /svx/source/form
parentdba34c: #i115880# removed assertion - it does not really indicate a problem, ... (diff)
downloadcore-794b301edcb9e8b52925c35ddeed71d1576dc72a.tar.gz
core-794b301edcb9e8b52925c35ddeed71d1576dc72a.zip
dba34c: some slots can be enabled in alive mode as well
Diffstat (limited to 'svx/source/form')
-rw-r--r--svx/source/form/fmshell.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/form/fmshell.cxx b/svx/source/form/fmshell.cxx
index 96bdd27d62e1..cb376a1b4acd 100644
--- a/svx/source/form/fmshell.cxx
+++ b/svx/source/form/fmshell.cxx
@@ -905,19 +905,19 @@ void FmFormShell::GetState(SfxItemSet &rSet)
case SID_FM_USE_WIZARDS:
if ( !SvtModuleOptions().IsModuleInstalled( SvtModuleOptions::E_SDATABASE ) )
rSet.Put( SfxVisibilityItem( nWhich, sal_False ) );
- else if (!m_bDesignMode || !GetFormModel())
+ else if (!GetFormModel())
rSet.DisableItem( nWhich );
else
rSet.Put( SfxBoolItem(nWhich, GetImpl()->GetWizardUsing() ) );
break;
case SID_FM_AUTOCONTROLFOCUS:
- if (!m_bDesignMode || !GetFormModel())
+ if (!GetFormModel())
rSet.DisableItem( nWhich );
else
rSet.Put( SfxBoolItem(nWhich, GetFormModel()->GetAutoControlFocus() ) );
break;
case SID_FM_OPEN_READONLY:
- if (!m_bDesignMode || !GetFormModel())
+ if (!GetFormModel())
rSet.DisableItem( nWhich );
else
rSet.Put( SfxBoolItem(nWhich, GetFormModel()->GetOpenInDesignMode() ) );