summaryrefslogtreecommitdiff
path: root/framework/source/uiconfiguration/globalsettings.cxx
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/uiconfiguration/globalsettings.cxx
parentbe616c26f990d651c752be201e29e2b89ba17f2a (diff)
Kill superfluous vertical whitespace
Change-Id: Ia1bb2b40c74efb17e655dd6f00d7ba48c16c65ae
Diffstat (limited to 'framework/source/uiconfiguration/globalsettings.cxx')
-rw-r--r--framework/source/uiconfiguration/globalsettings.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/framework/source/uiconfiguration/globalsettings.cxx b/framework/source/uiconfiguration/globalsettings.cxx
index f7c561b2f78c..314d8247c6db 100644
--- a/framework/source/uiconfiguration/globalsettings.cxx
+++ b/framework/source/uiconfiguration/globalsettings.cxx
@@ -33,17 +33,12 @@
#include <rtl/instance.hxx>
#include <cppuhelper/implbase2.hxx>
-
// Defines
-
using namespace ::com::sun::star;
-
-
// Namespace
-
static const char GLOBALSETTINGS_ROOT_ACCESS[] = "/org.openoffice.Office.UI.GlobalSettings/Toolbars";
static const char GLOBALSETTINGS_NODEREF_STATES[] = "States";
@@ -54,10 +49,8 @@ static const char GLOBALSETTINGS_PROPERTY_STATESENABLED[] = "StatesEnabled";
namespace framework
{
-
// Configuration access class for WindowState supplier implementation
-
class GlobalSettings_Access : public ::cppu::WeakImplHelper2<
::com::sun::star::lang::XComponent,
::com::sun::star::lang::XEventListener>
@@ -93,9 +86,6 @@ class GlobalSettings_Access : public ::cppu::WeakImplHelper2<
::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext> m_xContext;
};
-
-
-
GlobalSettings_Access::GlobalSettings_Access( const css::uno::Reference< css::uno::XComponentContext >& rxContext ) :
m_bDisposed( sal_False ),
m_bConfigRead( sal_False ),
@@ -267,10 +257,8 @@ sal_Bool GlobalSettings_Access::impl_initConfigAccess()
return sal_False;
}
-
// global class
-
struct mutexGlobalSettings : public rtl::Static< osl::Mutex, mutexGlobalSettings > {};
static GlobalSettings_Access* pStaticSettings = 0;