diff options
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/xml/acceleratorconfigurationreader.hxx | 10 | ||||
-rw-r--r-- | framework/inc/xml/acceleratorconfigurationwriter.hxx | 11 |
2 files changed, 0 insertions, 21 deletions
diff --git a/framework/inc/xml/acceleratorconfigurationreader.hxx b/framework/inc/xml/acceleratorconfigurationreader.hxx index 6dc343d3662b..90365e5de9e6 100644 --- a/framework/inc/xml/acceleratorconfigurationreader.hxx +++ b/framework/inc/xml/acceleratorconfigurationreader.hxx @@ -23,7 +23,6 @@ #include <xml/saxnamespacefilter.hxx> // HACK: needed for MSVC 2013 ENABLE_LTO build: WeakImplHelper<XDocumentHandler> #include <accelerators/acceleratorcache.hxx> -#include <accelerators/keymapping.hxx> #include <macros/xinterface.hxx> #include <general.h> @@ -31,7 +30,6 @@ #include <com/sun/star/xml/sax/XLocator.hpp> -#include <salhelper/singletonref.hxx> #include <cppuhelper/implbase.hxx> #include <rtl/ustring.hxx> @@ -85,14 +83,6 @@ class AcceleratorConfigurationReader : public ::cppu::WeakImplHelper< css::xml:: occurs recursive inside xml. */ bool m_bInsideAcceleratorItem; - /** @short is used to map key codes to its - string representation. - - @descr To perform this operation is - created only one time and kept - alive forever ...*/ - ::salhelper::SingletonRef< KeyMapping > m_rKeyMapping; - /** @short provide information about the parsing state. @descr We use it to find out the line and column, where diff --git a/framework/inc/xml/acceleratorconfigurationwriter.hxx b/framework/inc/xml/acceleratorconfigurationwriter.hxx index d46b2e93ff6a..e71c8893acf9 100644 --- a/framework/inc/xml/acceleratorconfigurationwriter.hxx +++ b/framework/inc/xml/acceleratorconfigurationwriter.hxx @@ -21,12 +21,9 @@ #define INCLUDED_FRAMEWORK_INC_XML_ACCELERATORCONFIGURATIONWRITER_HXX #include <accelerators/acceleratorcache.hxx> -#include <accelerators/keymapping.hxx> #include <general.h> #include <com/sun/star/xml/sax/XDocumentHandler.hpp> - -#include <salhelper/singletonref.hxx> #include <rtl/ustring.hxx> namespace framework{ @@ -45,14 +42,6 @@ class AcceleratorConfigurationWriter writer must work on. */ const AcceleratorCache& m_rContainer; - /** @short is used to map key codes to its - string representation. - - @descr To perform this operation is - created only one times and holded - alive forever ...*/ - ::salhelper::SingletonRef< KeyMapping > m_rKeyMapping; - // interface public: |