summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/crashreportdlg.cxx2
-rw-r--r--svx/source/svdraw/svdoole2.cxx2
-rw-r--r--svx/source/svdraw/svdotextdecomposition.cxx2
-rw-r--r--svx/source/svdraw/svdovirt.cxx2
-rw-r--r--svx/source/tbxctrls/formatpaintbrushctrl.cxx4
5 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/dialog/crashreportdlg.cxx b/svx/source/dialog/crashreportdlg.cxx
index a2f00c5821dd..70799f969bba 100644
--- a/svx/source/dialog/crashreportdlg.cxx
+++ b/svx/source/dialog/crashreportdlg.cxx
@@ -106,7 +106,7 @@ IMPL_LINK(CrashReportDialog, BtnHdl, Button*, pBtn, void)
mpBtnCancel->Disable();
mpBtnClose->GrabFocus();
- this->setOptimalLayoutSize();
+ setOptimalLayoutSize();
}
else if (pBtn == mpBtnCancel.get())
{
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 543fde87da3a..2f8b98ba915a 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -1616,7 +1616,7 @@ void SdrOle2Obj::ImpSetVisAreaSize()
{
//also handle not sfx based ole objects e.g. charts
//#i83860# resizing charts in impress distorts fonts
- uno::Reference< embed::XVisualObject > xVisualObject( this->getXModel(), uno::UNO_QUERY );
+ uno::Reference< embed::XVisualObject > xVisualObject( getXModel(), uno::UNO_QUERY );
if( xVisualObject.is() )
{
MapUnit aMapUnit = VCLUnoHelper::UnoEmbed2VCLMapUnit( mpImpl->mxObjRef->getMapUnit( GetAspect() ) );
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx
index 2e30cc3edf5f..83078bb72216 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -990,7 +990,7 @@ void SdrTextObj::impDecomposeBlockTextPrimitive(
bool bAllowGrowVertical = !bVerticalWriting;
bool bAllowGrowHorizontal = bVerticalWriting;
// Compatibility mode for tdf#99729
- if (this->pModel->IsAnchoredTextOverflowLegacy())
+ if (pModel->IsAnchoredTextOverflowLegacy())
{
bAllowGrowVertical = bHorizontalIsBlock;
bAllowGrowHorizontal = bVerticalIsBlock;
diff --git a/svx/source/svdraw/svdovirt.cxx b/svx/source/svdraw/svdovirt.cxx
index 5f6f21368805..cbd89c4b69d5 100644
--- a/svx/source/svdraw/svdovirt.cxx
+++ b/svx/source/svdraw/svdovirt.cxx
@@ -130,7 +130,7 @@ void SdrVirtObj::RecalcBoundRect()
SdrVirtObj* SdrVirtObj::Clone() const
{
- return new SdrVirtObj(this->rRefObj); // only a further reference
+ return new SdrVirtObj(rRefObj); // only a further reference
}
SdrVirtObj& SdrVirtObj::operator=(const SdrVirtObj& rObj)
diff --git a/svx/source/tbxctrls/formatpaintbrushctrl.cxx b/svx/source/tbxctrls/formatpaintbrushctrl.cxx
index 42165d13c10e..9cf36f8e1af2 100644
--- a/svx/source/tbxctrls/formatpaintbrushctrl.cxx
+++ b/svx/source/tbxctrls/formatpaintbrushctrl.cxx
@@ -68,7 +68,7 @@ void FormatPaintBrushToolBoxControl::DoubleClick()
m_aDoubleClickTimer.Stop();
m_bPersistentCopy = true;
- this->impl_executePaintBrush();
+ impl_executePaintBrush();
}
@@ -82,7 +82,7 @@ void FormatPaintBrushToolBoxControl::Click()
IMPL_LINK_NOARG(FormatPaintBrushToolBoxControl, WaitDoubleClickHdl, Timer *, void)
{
//there was no second click during waiting
- this->impl_executePaintBrush();
+ impl_executePaintBrush();
}