summaryrefslogtreecommitdiff
path: root/svx/source/svdraw
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/svdraw')
-rw-r--r--svx/source/svdraw/svdhdl.cxx4
-rw-r--r--svx/source/svdraw/svdmark.cxx4
-rw-r--r--svx/source/svdraw/svdmodel.cxx16
-rw-r--r--svx/source/svdraw/svdoashp.cxx4
-rw-r--r--svx/source/svdraw/svdobj.cxx88
-rw-r--r--svx/source/svdraw/svdograf.cxx4
-rw-r--r--svx/source/svdraw/svdoopengl.cxx4
-rw-r--r--svx/source/svdraw/svdopage.cxx4
-rw-r--r--svx/source/svdraw/svdpage.cxx4
-rw-r--r--svx/source/svdraw/svdpntv.cxx8
-rw-r--r--svx/source/svdraw/svdundo.cxx4
11 files changed, 0 insertions, 144 deletions
diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx
index db6345eb7334..3b334d117720 100644
--- a/svx/source/svdraw/svdhdl.cxx
+++ b/svx/source/svdraw/svdhdl.cxx
@@ -1754,10 +1754,6 @@ static bool ImpSdrHdlListSorter(SdrHdl* const& lhs, SdrHdl* const& rhs)
}
}
-SdrMarkView* SdrHdlList::GetView() const
-{
- return pView;
-}
// Helper struct for re-sorting handles
struct ImplHdlAndIndex
diff --git a/svx/source/svdraw/svdmark.cxx b/svx/source/svdraw/svdmark.cxx
index 698ee8d60759..f6945e977ac9 100644
--- a/svx/source/svdraw/svdmark.cxx
+++ b/svx/source/svdraw/svdmark.cxx
@@ -117,10 +117,6 @@ void SdrMark::SetMarkedSdrObj(SdrObject* pNewObj)
}
}
-SdrObject* SdrMark::GetMarkedSdrObj() const
-{
- return mpSelectedSdrObject;
-}
SdrMark& SdrMark::operator=(const SdrMark& rMark)
{
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index f3fc337673ea..f713087c6073 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -304,10 +304,6 @@ SdrModel::~SdrModel()
delete mpImpl;
}
-bool SdrModel::IsInDestruction() const
-{
- return mbInDestruction;
-}
// not yet implemented
void SdrModel::operator=(const SdrModel&)
@@ -2060,19 +2056,7 @@ void SdrHint::SetKind(SdrHintKind eNewKind)
meHint = eNewKind;
}
-const SdrPage* SdrHint::GetPage() const
-{
- return mpPage;
-}
-const SdrObject* SdrHint::GetObject() const
-{
- return mpObj;
-}
-SdrHintKind SdrHint::GetKind() const
-{
- return meHint;
-}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/svdraw/svdoashp.cxx b/svx/source/svdraw/svdoashp.cxx
index 8f7b0e2e5166..a640b229d315 100644
--- a/svx/source/svdraw/svdoashp.cxx
+++ b/svx/source/svdraw/svdoashp.cxx
@@ -535,10 +535,6 @@ void SdrObjCustomShape::SetMirroredY( const bool bMirrorY )
SetMergedItem( aGeometryItem );
}
-double SdrObjCustomShape::GetObjectRotation() const
-{
- return fObjectRotation;
-}
bool SdrObjCustomShape::IsPostRotate() const
{
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index ca94637feb5a..c18f84c716ac 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -167,15 +167,7 @@ SdrObjUserData::SdrObjUserData(const SdrObjUserData& rData) :
SdrObjUserData::~SdrObjUserData() {}
-sal_uInt32 SdrObjUserData::GetInventor() const
-{
- return nInventor;
-}
-sal_uInt16 SdrObjUserData::GetId() const
-{
- return nIdentifier;
-}
bool SdrObjUserData::HasMacro(const SdrObject* /*pObj*/) const
{
@@ -570,20 +562,12 @@ void SdrObject::SetModel(SdrModel* pNewModel)
pModel = pNewModel;
}
-SdrModel* SdrObject::GetModel() const
-{
- return pModel;
-}
void SdrObject::SetObjList(SdrObjList* pNewObjList)
{
pObjList=pNewObjList;
}
-SdrObjList* SdrObject::GetObjList() const
-{
- return pObjList;
-}
void SdrObject::SetPage(SdrPage* pNewPage)
{
@@ -611,10 +595,6 @@ void SdrObject::SetPage(SdrPage* pNewPage)
}
}
-SdrPage* SdrObject::GetPage() const
-{
- return pPage;
-}
// init global static itempool
SdrItemPool* SdrObject::mpGlobalItemPool = NULL;
@@ -900,10 +880,6 @@ sal_uInt32 SdrObject::GetOrdNum() const
return nOrdNum;
}
-sal_uInt32 SdrObject::GetOrdNumDirect() const
-{
- return nOrdNum;
-}
void SdrObject::SetOrdNum(sal_uInt32 nNum)
{
@@ -2690,95 +2666,39 @@ SdrObject* SdrObject::ImpConvertToContourObj(SdrObject* pRet, bool bForceLineDas
return pRet;
}
-bool SdrObject::IsVirtualObj() const
-{
- return bVirtObj;
-}
-bool SdrObject::IsClosedObj() const
-{
- return bClosedObj;
-}
-bool SdrObject::IsEdgeObj() const
-{
- return bIsEdge;
-}
-bool SdrObject::Is3DObj() const
-{
- return bIs3DObj;
-}
-bool SdrObject::IsUnoObj() const
-{
- return bIsUnoObj;
-}
void SdrObject::SetMarkProtect(bool bProt)
{
bMarkProt = bProt;
}
-bool SdrObject::IsMarkProtect() const
-{
- return bMarkProt;
-}
-bool SdrObject::IsInserted() const
-{
- return bInserted;
-}
-bool SdrObject::IsMoveProtect() const
-{
- return bMovProt;
-}
-bool SdrObject::IsResizeProtect() const
-{
- return bSizProt;
-}
bool SdrObject::IsPrintable() const
{
return !bNoPrint;
}
-bool SdrObject::IsVisible() const
-{
- return mbVisible;
-}
void SdrObject::SetEmptyPresObj(bool bEpt)
{
bEmptyPresObj = bEpt;
}
-bool SdrObject::IsEmptyPresObj() const
-{
- return bEmptyPresObj;
-}
void SdrObject::SetNotVisibleAsMaster(bool bFlg)
{
bNotVisibleAsMaster=bFlg;
}
-bool SdrObject::IsNotVisibleAsMaster() const
-{
- return bNotVisibleAsMaster;
-}
-bool SdrObject::LineIsOutsideGeometry() const
-{
- return mbLineIsOutsideGeometry;
-}
-bool SdrObject::DoesSupportTextIndentingOnLineWidthChange() const
-{
- return mbSupportTextIndentingOnLineWidthChange;
-}
// convert this path object to contour object, even when it is a group
SdrObject* SdrObject::ConvertToContourObj(SdrObject* pRet, bool bForceLineDash) const
@@ -2966,10 +2886,6 @@ void SdrObject::SetUserCall(SdrObjUserCall* pUser)
pUserCall = pUser;
}
-SdrObjUserCall* SdrObject::GetUserCall() const
-{
- return pUserCall;
-}
void SdrObject::SendUserCall(SdrUserCallType eUserCall, const Rectangle& rBoundRect) const
{
@@ -3335,10 +3251,6 @@ void SdrObject::SetDoNotInsertIntoPageAutomatically(const bool bSet)
mbDoNotInsertIntoPageAutomatically = bSet;
}
-bool SdrObject::IsDoNotInsertIntoPageAutomatically() const
-{
- return mbDoNotInsertIntoPageAutomatically;
-}
// #i121917#
bool SdrObject::HasText() const
diff --git a/svx/source/svdraw/svdograf.cxx b/svx/source/svdraw/svdograf.cxx
index 5a9496f8e541..4b1c22b490c5 100644
--- a/svx/source/svdraw/svdograf.cxx
+++ b/svx/source/svdraw/svdograf.cxx
@@ -1210,10 +1210,6 @@ void SdrGrafObj::Notify( SfxBroadcaster& rBC, const SfxHint& rHint )
ImpSetAttrToGrafInfo();
}
-bool SdrGrafObj::IsMirrored() const
-{
- return bMirrored;
-}
void SdrGrafObj::SetMirrored( bool _bMirrored )
{
diff --git a/svx/source/svdraw/svdoopengl.cxx b/svx/source/svdraw/svdoopengl.cxx
index f1e8398cf057..1b3398359c83 100644
--- a/svx/source/svdraw/svdoopengl.cxx
+++ b/svx/source/svdraw/svdoopengl.cxx
@@ -34,10 +34,6 @@ sdr::contact::ViewContact* SdrOpenGLObj::CreateObjectSpecificViewContact()
return new sdr::contact::ViewContactOfOpenGLObj(*this);
}
-OpenGLContext* SdrOpenGLObj::getOpenGLContext()
-{
- return mpContext;
-}
void SdrOpenGLObj::NbcResize(const Point& rRef, const Fraction& xFact, const Fraction& yFact)
{
diff --git a/svx/source/svdraw/svdopage.cxx b/svx/source/svdraw/svdopage.cxx
index 409c2b16f535..568aa4ea7a10 100644
--- a/svx/source/svdraw/svdopage.cxx
+++ b/svx/source/svdraw/svdopage.cxx
@@ -96,10 +96,6 @@ SdrPageObj::~SdrPageObj()
}
}
-SdrPage* SdrPageObj::GetReferencedPage() const
-{
- return mpShownPage;
-}
void SdrPageObj::SetReferencedPage(SdrPage* pNewPage)
{
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index b0a9c4477c6e..dbe91a6c2843 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -1236,10 +1236,6 @@ void SdrPageProperties::SetStyleSheet(SfxStyleSheet* pStyleSheet)
ImpPageChange(*mpSdrPage);
}
-SfxStyleSheet* SdrPageProperties::GetStyleSheet() const
-{
- return mpStyleSheet;
-}
diff --git a/svx/source/svdraw/svdpntv.cxx b/svx/source/svdraw/svdpntv.cxx
index 180396120b1e..3e09f9d64fb4 100644
--- a/svx/source/svdraw/svdpntv.cxx
+++ b/svx/source/svdraw/svdpntv.cxx
@@ -127,10 +127,6 @@ SvxViewHint::SvxViewHint (HintType eHintType)
{
}
-SvxViewHint::HintType SvxViewHint::GetHintType (void) const
-{
- return meHintType;
-}
@@ -1318,10 +1314,6 @@ void SdrPaintView::SetBufferedOverlayAllowed(bool bNew)
}
}
-bool SdrPaintView::IsPagePaintingAllowed() const
-{
- return mbPagePaintingAllowed;
-}
void SdrPaintView::SetPagePaintingAllowed(bool bNew)
{
diff --git a/svx/source/svdraw/svdundo.cxx b/svx/source/svdraw/svdundo.cxx
index b51142e6a50e..9aa4e00a3fc3 100644
--- a/svx/source/svdraw/svdundo.cxx
+++ b/svx/source/svdraw/svdundo.cxx
@@ -778,10 +778,6 @@ void SdrUndoObjList::SetOwner(bool bNew)
bOwner = bNew;
}
-sal_uInt32 SdrUndoObjList::GetOrdNum() const
-{
- return nOrdNum;
-}
void SdrUndoObjList::SetOrdNum(sal_uInt32 nOrdNum_)
{