summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-07 13:16:24 +0200
committerNoel Grandin <noel@peralex.com>2015-04-09 10:13:18 +0200
commit35163715ead39eece619a5790903c88fa4216ec6 (patch)
tree68f657e8f4137d234d1b6b32835e3ff540b4b01a /tools/source
parente68c699b7e7efdf3678b450124b9e08ee227ddb9 (diff)
loplugin:staticmethods
Change-Id: Ie348778ea666c24e95e048386547f301083a0017
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/fsys/urlobj.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index 330d90d266de..f6cbcef56fc2 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -3660,7 +3660,7 @@ bool INetURLObject::operator ==(INetURLObject const & rObject) const
|| GetPort() != rObject.GetPort()
|| HasParam() != rObject.HasParam()
|| GetParam(NO_DECODE) != rObject.GetParam(NO_DECODE)
- || GetMsgId(NO_DECODE) != rObject.GetMsgId(NO_DECODE))
+ || GetMsgId(NO_DECODE) != INetURLObject::GetMsgId(NO_DECODE))
return false;
OUString aPath1(GetURLPath(NO_DECODE));
OUString aPath2(rObject.GetURLPath(NO_DECODE));
@@ -3740,7 +3740,7 @@ bool INetURLObject::operator <(INetURLObject const & rObject) const
return true;
else if (nCompare > 0)
return false;
- return GetMsgId(NO_DECODE).compareTo(rObject.GetMsgId(NO_DECODE)) < 0;
+ return GetMsgId(NO_DECODE).compareTo(INetURLObject::GetMsgId(NO_DECODE)) < 0;
}
bool INetURLObject::ConcatData(INetProtocol eTheScheme,
@@ -4568,7 +4568,7 @@ OUString INetURLObject::getFSysPath(FSysStyle eStyle,
}
OUString INetURLObject::GetMsgId(DecodeMechanism,
- rtl_TextEncoding) const
+ rtl_TextEncoding)
{
return OUString();
}