summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterPane.cxx
diff options
context:
space:
mode:
authorRich Wareham <rjw57@cam.ac.uk>2012-01-12 12:05:37 +0000
committerMichael Meeks <michael.meeks@suse.com>2012-01-12 14:43:15 +0000
commit15fd86b9753cf201e7893618cb442ecc06c5385d (patch)
tree3f7040d4e176220b3c6ce5e1d73c0f0f04043ed4 /sdext/source/presenter/PresenterPane.cxx
parente198eea5a87bff84783bd038cf134e6ea3b764ad (diff)
sdext/source/presenter/*: remove extraneous vertical whitespace
Replace 5 lines of vertical whitespace in sdext/source/presenter/* with a single line so that more can be seen on the screen at once. Fixes bug 44635
Diffstat (limited to 'sdext/source/presenter/PresenterPane.cxx')
-rw-r--r--sdext/source/presenter/PresenterPane.cxx37
1 files changed, 0 insertions, 37 deletions
diff --git a/sdext/source/presenter/PresenterPane.cxx b/sdext/source/presenter/PresenterPane.cxx
index 8266ae2d9e11..ca1deabab7f0 100644
--- a/sdext/source/presenter/PresenterPane.cxx
+++ b/sdext/source/presenter/PresenterPane.cxx
@@ -26,7 +26,6 @@
*
************************************************************************/
-
#include "PresenterPane.hxx"
#include "PresenterController.hxx"
#include "PresenterPaintManager.hxx"
@@ -60,16 +59,10 @@ PresenterPane::PresenterPane (
UNO_QUERY_THROW);
}
-
-
-
PresenterPane::~PresenterPane (void)
{
}
-
-
-
//----- XPane -----------------------------------------------------------------
Reference<awt::XWindow> SAL_CALL PresenterPane::getWindow (void)
@@ -79,9 +72,6 @@ Reference<awt::XWindow> SAL_CALL PresenterPane::getWindow (void)
return mxContentWindow;
}
-
-
-
Reference<rendering::XCanvas> SAL_CALL PresenterPane::getCanvas (void)
throw (RuntimeException)
{
@@ -89,9 +79,6 @@ Reference<rendering::XCanvas> SAL_CALL PresenterPane::getCanvas (void)
return mxContentCanvas;
}
-
-
-
//----- XWindowListener -------------------------------------------------------
void SAL_CALL PresenterPane::windowResized (const awt::WindowEvent& rEvent)
@@ -109,10 +96,6 @@ void SAL_CALL PresenterPane::windowResized (const awt::WindowEvent& rEvent)
Invalidate(maBoundingBox);
}
-
-
-
-
void SAL_CALL PresenterPane::windowMoved (const awt::WindowEvent& rEvent)
throw (RuntimeException)
{
@@ -127,9 +110,6 @@ void SAL_CALL PresenterPane::windowMoved (const awt::WindowEvent& rEvent)
Invalidate(maBoundingBox);
}
-
-
-
void SAL_CALL PresenterPane::windowShown (const lang::EventObject& rEvent)
throw (RuntimeException)
{
@@ -148,9 +128,6 @@ void SAL_CALL PresenterPane::windowShown (const lang::EventObject& rEvent)
Invalidate(maBoundingBox);
}
-
-
-
void SAL_CALL PresenterPane::windowHidden (const lang::EventObject& rEvent)
throw (RuntimeException)
{
@@ -161,9 +138,6 @@ void SAL_CALL PresenterPane::windowHidden (const lang::EventObject& rEvent)
mxContentWindow->setVisible(sal_False);
}
-
-
-
//----- XPaintListener --------------------------------------------------------
void SAL_CALL PresenterPane::windowPaint (const awt::PaintEvent& rEvent)
@@ -175,12 +149,8 @@ void SAL_CALL PresenterPane::windowPaint (const awt::PaintEvent& rEvent)
PaintBorder(rEvent.UpdateRect);
}
-
-
-
//-----------------------------------------------------------------------------
-
void PresenterPane::CreateCanvases (
const Reference<awt::XWindow>& rxParentWindow,
const Reference<rendering::XSpriteCanvas>& rxParentCanvas)
@@ -208,9 +178,6 @@ void PresenterPane::CreateCanvases (
PaintBorder(mxBorderWindow->getPosSize());
}
-
-
-
void PresenterPane::Invalidate (const css::awt::Rectangle& rRepaintBox)
{
// Invalidate the parent window to be able to invalidate an area outside
@@ -218,9 +185,6 @@ void PresenterPane::Invalidate (const css::awt::Rectangle& rRepaintBox)
mpPresenterController->GetPaintManager()->Invalidate(mxParentWindow, rRepaintBox);
}
-
-
-
void PresenterPane::UpdateBoundingBox (void)
{
if (mxBorderWindow.is() && IsVisible())
@@ -229,7 +193,6 @@ void PresenterPane::UpdateBoundingBox (void)
maBoundingBox = awt::Rectangle();
}
-
} } // end of namespace ::sd::presenter
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */