summaryrefslogtreecommitdiff
path: root/sfx2/source/sidebar/ContextChangeBroadcaster.cxx
diff options
context:
space:
mode:
authorgamebusterz <gamebusterz2@gmail.com>2015-02-20 02:46:58 +0530
committerMichael Meeks <michael.meeks@collabora.com>2015-02-20 21:25:17 +0000
commit5bd8dcd45cb37b093e526c929ff9e3f382b8a758 (patch)
treee9e93b53d509a04a1548b6da8cca868a5351964b /sfx2/source/sidebar/ContextChangeBroadcaster.cxx
parent1fcaf8a37a7133f07e5b9a18c4fadf17fe914f6d (diff)
tdf#12345 Removed redundant newlines in the code
Change-Id: Id3d8b6732caf58c70315db6e706338f7dac458c2 Reviewed-on: https://gerrit.libreoffice.org/14567 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'sfx2/source/sidebar/ContextChangeBroadcaster.cxx')
-rw-r--r--sfx2/source/sidebar/ContextChangeBroadcaster.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/sfx2/source/sidebar/ContextChangeBroadcaster.cxx b/sfx2/source/sidebar/ContextChangeBroadcaster.cxx
index a45a8038b779..3153a58f4295 100644
--- a/sfx2/source/sidebar/ContextChangeBroadcaster.cxx
+++ b/sfx2/source/sidebar/ContextChangeBroadcaster.cxx
@@ -39,22 +39,18 @@ ContextChangeBroadcaster::ContextChangeBroadcaster (void)
}
-
ContextChangeBroadcaster::~ContextChangeBroadcaster (void)
{
}
-
void ContextChangeBroadcaster::Initialize (const ::rtl::OUString& rsContextName)
{
msContextName = rsContextName;
}
-
-
void ContextChangeBroadcaster::Activate (const css::uno::Reference<css::frame::XFrame>& rxFrame)
{
if (msContextName.getLength() > 0)
@@ -62,8 +58,6 @@ void ContextChangeBroadcaster::Activate (const css::uno::Reference<css::frame::X
}
-
-
void ContextChangeBroadcaster::Deactivate (const css::uno::Reference<css::frame::XFrame>& rxFrame)
{
if (msContextName.getLength() > 0)
@@ -76,8 +70,6 @@ void ContextChangeBroadcaster::Deactivate (const css::uno::Reference<css::frame:
}
-
-
bool ContextChangeBroadcaster::SetBroadcasterEnabled (const bool bIsEnabled)
{
const bool bWasEnabled (mbIsBroadcasterEnabled);
@@ -86,8 +78,6 @@ bool ContextChangeBroadcaster::SetBroadcasterEnabled (const bool bIsEnabled)
}
-
-
void ContextChangeBroadcaster::BroadcastContextChange (
const css::uno::Reference<css::frame::XFrame>& rxFrame,
const ::rtl::OUString& rsModuleName,
@@ -119,8 +109,6 @@ void ContextChangeBroadcaster::BroadcastContextChange (
}
-
-
OUString ContextChangeBroadcaster::GetModuleName (const css::uno::Reference<css::frame::XFrame>& rxFrame)
{
if ( ! rxFrame.is() || ! rxFrame->getController().is())
@@ -139,7 +127,6 @@ OUString ContextChangeBroadcaster::GetModuleName (const css::uno::Reference<css:
}
-
} } // end of namespace ::sd::sidebar
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */