summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-10-01 13:57:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-10-01 20:36:28 +0200
commit40e157e2a838fd8cecd0e45109b7e62e056d642b (patch)
tree7e829d62eb291c3618af88340675ccd116ebc172 /svx
parent1a3846b70d7bb34ad4ce17eef1196fe42d74e41c (diff)
rename XLinePreview back to SvxXLinePreview
Change-Id: I833c4ae6e2944b484bb32532c20f5ef09917e712 Reviewed-on: https://gerrit.libreoffice.org/61190 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/dlgctrl.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx
index 35f1964313f1..dbf5be9a034f 100644
--- a/svx/source/dialog/dlgctrl.cxx
+++ b/svx/source/dialog/dlgctrl.cxx
@@ -1336,7 +1336,7 @@ void SvxPreviewBase::DataChanged(const DataChangedEvent& rDCEvt)
}
}
-void XLinePreview::Resize()
+void SvxXLinePreview::Resize()
{
PreviewBase::Resize();
@@ -1376,7 +1376,7 @@ void XLinePreview::Resize()
mpLineObjC->SetPathPoly(basegfx::B2DPolyPolygon(aPolygonC));
}
-XLinePreview::XLinePreview()
+SvxXLinePreview::SvxXLinePreview()
: mpLineObjA(nullptr)
, mpLineObjB(nullptr)
, mpLineObjC(nullptr)
@@ -1385,7 +1385,7 @@ XLinePreview::XLinePreview()
{
}
-void XLinePreview::SetDrawingArea(weld::DrawingArea* pDrawingArea)
+void SvxXLinePreview::SetDrawingArea(weld::DrawingArea* pDrawingArea)
{
PreviewBase::SetDrawingArea(pDrawingArea);
@@ -1397,7 +1397,7 @@ void XLinePreview::SetDrawingArea(weld::DrawingArea* pDrawingArea)
Invalidate();
}
-XLinePreview::~XLinePreview()
+SvxXLinePreview::~SvxXLinePreview()
{
SdrObject *pFoo = mpLineObjA;
SdrObject::Free( pFoo );
@@ -1407,13 +1407,13 @@ XLinePreview::~XLinePreview()
SdrObject::Free( pFoo );
}
-void XLinePreview::SetSymbol(Graphic* p,const Size& s)
+void SvxXLinePreview::SetSymbol(Graphic* p,const Size& s)
{
mpGraphic = p;
maSymbolSize = s;
}
-void XLinePreview::ResizeSymbol(const Size& s)
+void SvxXLinePreview::ResizeSymbol(const Size& s)
{
if ( s != maSymbolSize )
{
@@ -1422,7 +1422,7 @@ void XLinePreview::ResizeSymbol(const Size& s)
}
}
-void XLinePreview::SetLineAttributes(const SfxItemSet& rItemSet)
+void SvxXLinePreview::SetLineAttributes(const SfxItemSet& rItemSet)
{
// Set ItemSet at objects
mpLineObjA->SetMergedItemSet(rItemSet);
@@ -1436,7 +1436,7 @@ void XLinePreview::SetLineAttributes(const SfxItemSet& rItemSet)
mpLineObjC->SetMergedItemSet(aTempSet);
}
-void XLinePreview::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&)
+void SvxXLinePreview::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&)
{
LocalPrePaint(rRenderContext);