summaryrefslogtreecommitdiff
path: root/sfx2/source/sidebar/Panel.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/Panel.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/Panel.cxx')
-rw-r--r--sfx2/source/sidebar/Panel.cxx30
1 files changed, 1 insertions, 29 deletions
diff --git a/sfx2/source/sidebar/Panel.cxx b/sfx2/source/sidebar/Panel.cxx
index bc89d9b45a9f..769f8cc513ba 100644
--- a/sfx2/source/sidebar/Panel.cxx
+++ b/sfx2/source/sidebar/Panel.cxx
@@ -72,8 +72,6 @@ Panel::Panel (
}
-
-
Panel::~Panel (void)
{
Dispose();
@@ -81,7 +79,6 @@ Panel::~Panel (void)
-
void Panel::Dispose (void)
{
mxPanelComponent = NULL;
@@ -103,8 +100,6 @@ void Panel::Dispose (void)
}
-
-
PanelTitleBar* Panel::GetTitleBar (void) const
{
return mpTitleBar.get();
@@ -112,11 +107,6 @@ PanelTitleBar* Panel::GetTitleBar (void) const
-
-
-
-
-
void Panel::SetUIElement (const Reference<ui::XUIElement>& rxElement)
{
mxElement = rxElement;
@@ -127,8 +117,6 @@ void Panel::SetUIElement (const Reference<ui::XUIElement>& rxElement)
}
-
-
void Panel::SetExpanded (const bool bIsExpanded)
{
if (mbIsExpanded != bIsExpanded)
@@ -146,11 +134,6 @@ void Panel::SetExpanded (const bool bIsExpanded)
-
-
-
-
-
bool Panel::HasIdPredicate (const ::rtl::OUString& rsId) const
{
return msPanelId.equals(rsId);
@@ -158,19 +141,12 @@ bool Panel::HasIdPredicate (const ::rtl::OUString& rsId) const
-
-
-
-
-
void Panel::Paint (const Rectangle& rUpdateArea)
{
Window::Paint(rUpdateArea);
}
-
-
void Panel::Resize (void)
{
Window::Resize();
@@ -190,17 +166,12 @@ void Panel::Resize (void)
}
-
-
void Panel::Activate (void)
{
Window::Activate();
}
-
-
-
void Panel::DataChanged (const DataChangedEvent& rEvent)
{
(void)rEvent;
@@ -208,6 +179,7 @@ void Panel::DataChanged (const DataChangedEvent& rEvent)
}
+
Reference<awt::XWindow> Panel::GetElementWindow (void)
{
if (mxElement.is())