summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/outlview.cxx
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 17:50:25 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 22:41:10 +0200
commitbf42b6f9f51b4bc66e267ae24c87ac79122825cc (patch)
tree449f642fc53e3d654ae36a39877efc41a8b74fcc /sd/source/ui/view/outlview.cxx
parent3f84d81412f123bda0dde57c4e52abe9f49f58af (diff)
fdo#62475 - remove visual noise
This is a follow up commit to - 22d1beb78a475e4846af945afde1c4d6c263b5d6 - 1c7af455ab9345304a7ac48ce2e0310de2ac8a75 Change-Id: I102685391125f3b4f7bdf838f8bd17a2283d558d
Diffstat (limited to 'sd/source/ui/view/outlview.cxx')
-rw-r--r--sd/source/ui/view/outlview.cxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx
index 2e3a7e540348..66d424913eeb 100644
--- a/sd/source/ui/view/outlview.cxx
+++ b/sd/source/ui/view/outlview.cxx
@@ -89,7 +89,6 @@ struct SdParaAndPos
TYPEINIT1( OutlineView, ::sd::View );
-
OutlineView::OutlineView( DrawDocShell& rDocSh, ::Window* pWindow, OutlineViewShell& rOutlineViewSh)
: ::sd::View(*rDocSh.GetDoc(), pWindow, &rOutlineViewSh)
, mrOutlineViewShell(rOutlineViewSh)
@@ -205,27 +204,17 @@ OutlineView::~OutlineView()
}
}
-
-
-
void OutlineView::ConnectToApplication (void)
{
mrOutlineViewShell.GetActiveWindow()->GrabFocus();
Application::AddEventListener(LINK(this, OutlineView, AppEventListenerHdl));
}
-
-
-
void OutlineView::DisconnectFromApplication (void)
{
Application::RemoveEventListener(LINK(this, OutlineView, AppEventListenerHdl));
}
-
-
-
-
void OutlineView::Paint(const Rectangle& rRect, ::sd::Window* pWin)
{
OutlinerView* pOlView = GetViewByWindow(pWin);
@@ -248,12 +237,10 @@ void OutlineView::InvalidateSlideNumberArea()
/**
* Window size was changed
*/
-
void OutlineView::AdjustPosSizePixel(const Point &,const Size &,::sd::Window*)
{
}
-
void OutlineView::AddWindowToPaintView(OutputDevice* pWin)
{
sal_Bool bAdded = sal_False;
@@ -291,7 +278,6 @@ void OutlineView::AddWindowToPaintView(OutputDevice* pWin)
::sd::View::AddWindowToPaintView(pWin);
}
-
void OutlineView::DeleteWindowFromPaintView(OutputDevice* pWin)
{
sal_Bool bRemoved = sal_False;
@@ -338,7 +324,6 @@ OutlinerView* OutlineView::GetViewByWindow (::Window* pWin) const
return (pOlView);
}
-
/**
* Return the title before a random paragraph
*/
@@ -981,7 +966,6 @@ SdrTextObj* OutlineView::GetTitleTextObject(SdrPage* pPage)
return pResult;
}
-
/**
* Look for the outline text object in one page of the model
*/
@@ -1075,7 +1059,6 @@ sal_Bool OutlineView::PrepareClose(sal_Bool)
return sal_True;
}
-
/**
* Set attributes of the selected text
*/
@@ -1344,8 +1327,6 @@ SfxStyleSheet* OutlineView::GetStyleSheet() const
return pResult;
}
-
-
/**
* Mark pages as selected / not selected
*/
@@ -1390,7 +1371,6 @@ void OutlineView::SetSelectedPages()
}
}
-
/**
* Set new links
*/
@@ -1412,8 +1392,6 @@ void OutlineView::SetLinks()
mrOutliner.SetEndPasteOrDropHdl(LINK(this,OutlineView, EndPasteOrDropHdl));
}
-
-
/**
* Restore old links
*/
@@ -1433,13 +1411,11 @@ void OutlineView::ResetLinks() const
mrOutliner.SetEndPasteOrDropHdl(aEmptyLink);
}
-
sal_Int8 OutlineView::AcceptDrop( const AcceptDropEvent&, DropTargetHelper&, ::sd::Window*, sal_uInt16, sal_uInt16)
{
return DND_ACTION_NONE;
}
-
sal_Int8 OutlineView::ExecuteDrop( const ExecuteDropEvent&, DropTargetHelper&, ::sd::Window*, sal_uInt16, sal_uInt16)
{
return DND_ACTION_NONE;
@@ -1493,9 +1469,6 @@ IMPL_LINK_NOARG(OutlineView, AppEventListenerHdl)
return 0;
}
-
-
-
IMPL_LINK(OutlineView, EventMultiplexerListener, ::sd::tools::EventMultiplexerEvent*, pEvent)
{
if (pEvent != NULL)
@@ -1796,8 +1769,6 @@ IMPL_LINK(OutlineView, PaintingFirstLineHdl, PaintFirstLineInfo*, pInfo)
return 0;
}
-// --------------------------------------------------------------------
-
void OutlineView::UpdateParagraph( sal_Int32 nPara )
{
SfxItemSet aNewAttrs2( mrOutliner.GetParaAttribs( nPara ) );
@@ -1805,8 +1776,6 @@ void OutlineView::UpdateParagraph( sal_Int32 nPara )
mrOutliner.SetParaAttribs( nPara, aNewAttrs2 );
}
-// --------------------------------------------------------------------
-
void OutlineView::OnBeginPasteOrDrop( PasteOrDropInfos* /*pInfos*/ )
{
}
@@ -1877,7 +1846,6 @@ void OutlineView::OnEndPasteOrDrop( PasteOrDropInfos* pInfos )
// ====================================================================
-
OutlineViewModelChangeGuard::OutlineViewModelChangeGuard( OutlineView& rView )
: mrView( rView )
{
@@ -1902,7 +1870,6 @@ OutlineViewPageChangesGuard::~OutlineViewPageChangesGuard()
mpView->IgnoreCurrentPageChanges( false );
}
-
} // end of namespace sd
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */