summaryrefslogtreecommitdiff
path: root/svtools/source/config/itemholder2.cxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2009-10-06 07:38:24 +0200
committerMathias Bauer <mba@openoffice.org>2009-10-06 07:38:24 +0200
commitf87ee64d502aec9365d98d53d5b913f6456eae6b (patch)
tree293ad32cd784b2b036b076020dd1b3f1256bdcd5 /svtools/source/config/itemholder2.cxx
parent4de41d18fd2b96079b9a0aa9f1ef123e431fe938 (diff)
#103496#: move VCL free ConfigItems to unotools
Diffstat (limited to 'svtools/source/config/itemholder2.cxx')
-rw-r--r--svtools/source/config/itemholder2.cxx16
1 files changed, 6 insertions, 10 deletions
diff --git a/svtools/source/config/itemholder2.cxx b/svtools/source/config/itemholder2.cxx
index 590e0f85ade1..d0e5b30007f9 100644
--- a/svtools/source/config/itemholder2.cxx
+++ b/svtools/source/config/itemholder2.cxx
@@ -46,6 +46,7 @@
#include <svtools/accessibilityoptions.hxx>
#include <apearcfg.hxx>
#include <svtools/cjkoptions.hxx>
+#include <svtools/menuoptions.hxx>
#include <svtools/colorcfg.hxx>
#include <svtools/ctloptions.hxx>
#include <fontsubstconfig.hxx>
@@ -54,9 +55,7 @@
#include <misccfg.hxx>
#include <svtools/printoptions.hxx>
#include <svtools/syslocaleoptions.hxx>
-#include <svtools/undoopt.hxx>
-#include <svtools/useroptions.hxx>
-#include <svtools/options.hxx>
+#include <unotools/options.hxx>
#include <svtools/miscopt.hxx>
@@ -206,6 +205,10 @@ void ItemHolder2::impl_newItem(TItemInfo& rItem)
// no ref count rItem.pItem = new SfxMiscCfg();
break;
+ case E_MENUOPTIONS :
+ rItem.pItem = new SvtMenuOptions();
+ break;
+
case E_PRINTOPTIONS :
rItem.pItem = new SvtPrinterOptions();
break;
@@ -218,13 +221,6 @@ void ItemHolder2::impl_newItem(TItemInfo& rItem)
rItem.pItem = new SvtSysLocaleOptions();
break;
- case E_UNDOOPTIONS :
- rItem.pItem = new SvtUndoOptions();
- break;
-
- case E_USEROPTIONS :
- rItem.pItem = new SvtUserOptions();
- break;
case E_MISCOPTIONS :
rItem.pItem = new SvtMiscOptions();
break;