summaryrefslogtreecommitdiffstats
path: root/include/tools/urlobj.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-06 12:19:57 +0200
committerNoel Grandin <noel@peralex.com>2016-04-11 08:26:01 +0200
commite5dd156a44625865684b5dfa90a95108259deb50 (patch)
treebb0da749c95d7fb1929f2c7d8757a53e73720807 /include/tools/urlobj.hxx
parentclang-tidy performance-unnecessary-value-param in sfx2 (diff)
downloadcore-e5dd156a44625865684b5dfa90a95108259deb50.tar.gz
core-e5dd156a44625865684b5dfa90a95108259deb50.zip
loplugin:constantparam
Change-Id: Ie690088d7a7d568703afd22f544628fc8012a7e1
Diffstat (limited to 'include/tools/urlobj.hxx')
-rw-r--r--include/tools/urlobj.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tools/urlobj.hxx b/include/tools/urlobj.hxx
index 7b48084e7be5..f5ee05110f18 100644
--- a/include/tools/urlobj.hxx
+++ b/include/tools/urlobj.hxx
@@ -1005,7 +1005,7 @@ private:
TOOLS_DLLPRIVATE void setInvalid();
bool setAbsURIRef(
- OUString const & rTheAbsURIRef, bool bOctets,
+ OUString const & rTheAbsURIRef,
EncodeMechanism eMechanism, rtl_TextEncoding eCharset, bool bSmart,
FSysStyle eStyle);
@@ -1186,7 +1186,7 @@ inline INetURLObject::INetURLObject(OUString const & rTheAbsURIRef,
rtl_TextEncoding eCharset):
m_eScheme(INetProtocol::NotValid), m_eSmartScheme(INetProtocol::Http)
{
- setAbsURIRef(rTheAbsURIRef, false, eMechanism, eCharset, false,
+ setAbsURIRef(rTheAbsURIRef, eMechanism, eCharset, false,
FSysStyle(0));
}
@@ -1194,7 +1194,7 @@ inline bool INetURLObject::SetURL(OUString const & rTheAbsURIRef,
EncodeMechanism eMechanism,
rtl_TextEncoding eCharset)
{
- return setAbsURIRef(rTheAbsURIRef, false, eMechanism, eCharset, false,
+ return setAbsURIRef(rTheAbsURIRef, eMechanism, eCharset, false,
FSysStyle(0));
}
@@ -1205,7 +1205,7 @@ inline INetURLObject::INetURLObject(OUString const & rTheAbsURIRef,
FSysStyle eStyle):
m_eScheme(INetProtocol::NotValid), m_eSmartScheme(eTheSmartScheme)
{
- setAbsURIRef(rTheAbsURIRef, false, eMechanism, eCharset, true, eStyle);
+ setAbsURIRef(rTheAbsURIRef, eMechanism, eCharset, true, eStyle);
}
inline bool INetURLObject::SetSmartURL(OUString const & rTheAbsURIRef,
@@ -1213,7 +1213,7 @@ inline bool INetURLObject::SetSmartURL(OUString const & rTheAbsURIRef,
rtl_TextEncoding eCharset,
FSysStyle eStyle)
{
- return setAbsURIRef(rTheAbsURIRef, false, eMechanism, eCharset, true,
+ return setAbsURIRef(rTheAbsURIRef, eMechanism, eCharset, true,
eStyle);
}