summaryrefslogtreecommitdiff
path: root/framework/source/inc/accelerators/acceleratorconfiguration.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 19:05:49 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 19:37:48 +0300
commit951ed199f1a47c02dad3dc899b9804b4574a151d (patch)
treed8f82a3afa345351ce6a4a206424c6f2bd2aed46 /framework/source/inc/accelerators/acceleratorconfiguration.hxx
parentbe616c26f990d651c752be201e29e2b89ba17f2a (diff)
Kill superfluous vertical whitespace
Change-Id: Ia1bb2b40c74efb17e655dd6f00d7ba48c16c65ae
Diffstat (limited to 'framework/source/inc/accelerators/acceleratorconfiguration.hxx')
-rw-r--r--framework/source/inc/accelerators/acceleratorconfiguration.hxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/framework/source/inc/accelerators/acceleratorconfiguration.hxx b/framework/source/inc/accelerators/acceleratorconfiguration.hxx
index 27095364888b..8065456744f6 100644
--- a/framework/source/inc/accelerators/acceleratorconfiguration.hxx
+++ b/framework/source/inc/accelerators/acceleratorconfiguration.hxx
@@ -50,7 +50,6 @@
#include <cppuhelper/implbase4.hxx>
#include <salhelper/singletonref.hxx>
-
// definition
namespace framework
@@ -64,7 +63,6 @@ const char CFG_ENTRY_MODULES[] = "Modules";
in combination with the salhelper::SingletonRef mechanism! */
typedef PresetHandler AcceleratorPresets;
-
/**
implements a read/write access to the accelerator configuration.
*/
@@ -80,12 +78,10 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
protected:
-
/** the global uno service manager.
Must be used to create own needed services. */
css::uno::Reference< css::uno::XComponentContext > m_xContext;
-
/** used to:
i ) copy configuration files from the share to the user layer
ii ) provide access to these config files
@@ -93,15 +89,12 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
iv ) provide commit for changes. */
PresetHandler m_aPresetHandler;
-
/** contains the cached configuration data */
AcceleratorCache m_aReadCache;
-
/** used to implement the copy on write pattern! */
AcceleratorCache* m_pWriteCache;
-
// native interface!
public:
@@ -109,7 +102,6 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
XMLBasedAcceleratorConfiguration( const css::uno::Reference< css::uno::XComponentContext >& xContext);
virtual ~XMLBasedAcceleratorConfiguration( );
-
// uno interface!
public:
@@ -192,12 +184,10 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
// IStorageListener
virtual void changesOccurred(const OUString& sPath) SAL_OVERRIDE;
-
// helper for derived classes
protected:
-
/** @short return the current office locale.
@descr We do not cache this value, because we are not listen
@@ -208,12 +198,10 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
*/
OUString impl_ts_getLocale() const;
-
// helper
private:
-
/** @short load a configuration set, using the given stream.
@param xStream
@@ -221,7 +209,6 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
*/
void impl_ts_load(const css::uno::Reference< css::io::XInputStream >& xStream);
-
/** @short save a configuration set, using the given stream.
@param xStream
@@ -229,7 +216,6 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
*/
void impl_ts_save(const css::uno::Reference< css::io::XOutputStream >& xStream);
-
/** @short try to locate and open a sub storage.
@descr It search at the root storage for the specified
@@ -257,7 +243,6 @@ class XMLBasedAcceleratorConfiguration : public IStorageListener,
const OUString& sSubStorage ,
sal_Bool bOutStream );
-
/** @short returns a reference to one of our internal cache members.
@descr We implement the copy-on-write pattern. Doing so
@@ -293,7 +278,6 @@ class XCUBasedAcceleratorConfiguration : public ::cppu::WeakImplHelper4<
protected:
-
/** the global uno service manager.
Must be used to create own needed services. */
css::uno::Reference< css::uno::XComponentContext > m_xContext;
@@ -309,7 +293,6 @@ class XCUBasedAcceleratorConfiguration : public ::cppu::WeakImplHelper4<
::salhelper::SingletonRef< KeyMapping > m_rKeyMapping;
-
// native interface!
public:
@@ -317,7 +300,6 @@ class XCUBasedAcceleratorConfiguration : public ::cppu::WeakImplHelper4<
XCUBasedAcceleratorConfiguration( const css::uno::Reference< css::uno::XComponentContext >& xContext );
virtual ~XCUBasedAcceleratorConfiguration( );
-
// uno interface!
public:
@@ -410,12 +392,10 @@ class XCUBasedAcceleratorConfiguration : public ::cppu::WeakImplHelper4<
virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
-
// helper for derived classes
protected:
-
/** @short return the current office locale.
@descr We do not cache this value, because we are not listen
@@ -426,7 +406,6 @@ class XCUBasedAcceleratorConfiguration : public ::cppu::WeakImplHelper4<
*/
OUString impl_ts_getLocale() const;
-
// helper
private: