summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-13 17:50:43 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-13 17:54:29 +0200
commit29e7b61727a5b0da93bf566cb83875531f34071b (patch)
tree45007c93bc65219b29bb133368d24dbe49311b89 /lotuswordpro
parentd60759a96da789e48137de7c256180a3ae450012 (diff)
loplugin:staticcall
Change-Id: Ieceecb849ade05a4f6dcd6c783da6ab53508323d
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpdrawobj.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpparastyle.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpsilverbullet.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx b/lotuswordpro/source/filter/lwpdrawobj.cxx
index 6ef548bd3654..4be146f0f89c 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -1072,7 +1072,7 @@ OUString LwpDrawTextBox::RegisterStyle()
strlen((char*)m_aTextRec.tmpTextFaceName), aEncoding);
pFont->SetFontName(aFontName);
- this->SetFontStyle(pFont, &m_aTextRec);
+ SetFontStyle(pFont, &m_aTextRec);
pStyle->SetFont(pFont);
diff --git a/lotuswordpro/source/filter/lwpparastyle.cxx b/lotuswordpro/source/filter/lwpparastyle.cxx
index 152171c9805c..47aa89be8050 100644
--- a/lotuswordpro/source/filter/lwpparastyle.cxx
+++ b/lotuswordpro/source/filter/lwpparastyle.cxx
@@ -358,7 +358,7 @@ void LwpParaStyle::ApplyParaBorder(XFParaStyle* pParaStyle, LwpParaBorderOverrid
{
if (pBorderStuff->HasSide(pType[nC]))
{
- this->ApplySubBorder(pBorderStuff, pType[nC], pXFBorders);
+ ApplySubBorder(pBorderStuff, pType[nC], pXFBorders);
//get border spacing to text content
if (pMargins)
diff --git a/lotuswordpro/source/filter/lwpsilverbullet.cxx b/lotuswordpro/source/filter/lwpsilverbullet.cxx
index 717fc574473d..aad380c460f0 100644
--- a/lotuswordpro/source/filter/lwpsilverbullet.cxx
+++ b/lotuswordpro/source/filter/lwpsilverbullet.cxx
@@ -143,7 +143,7 @@ void LwpSilverBullet::RegisterStyle()
aFmt.SetPrefix(aPrefix + aParaNumbering.pPrefix->GetText());
}
- aFmt.SetFormat(this->GetNumCharByStyleID(pParaNumber));
+ aFmt.SetFormat(GetNumCharByStyleID(pParaNumber));
if (aParaNumbering.pSuffix)
{
@@ -171,7 +171,7 @@ void LwpSilverBullet::RegisterStyle()
aSuffix = aParaNumbering.pSuffix->GetText();
}
- pListStyle->SetListBullet(nPos, this->GetNumCharByStyleID(pParaNumber).toChar(),
+ pListStyle->SetListBullet(nPos, GetNumCharByStyleID(pParaNumber).toChar(),
"Times New Roman", aPrefix, aSuffix);
}