summaryrefslogtreecommitdiff
path: root/include
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
parent4cbcec9ed4c51277b00c155a5fa097880c0dee4b (diff)
loplugin:constantparam
Change-Id: Ie690088d7a7d568703afd22f544628fc8012a7e1
Diffstat (limited to 'include')
-rw-r--r--include/svtools/ivctrl.hxx2
-rw-r--r--include/svtools/treelistbox.hxx2
-rw-r--r--include/svx/svdopath.hxx2
-rw-r--r--include/tools/urlobj.hxx10
4 files changed, 8 insertions, 8 deletions
diff --git a/include/svtools/ivctrl.hxx b/include/svtools/ivctrl.hxx
index 2f37b12b01ab..ec6e0e93750b 100644
--- a/include/svtools/ivctrl.hxx
+++ b/include/svtools/ivctrl.hxx
@@ -118,7 +118,7 @@ class SvxIconChoiceCtrlEntry
}
public:
- SvxIconChoiceCtrlEntry( const OUString& rText, const Image& rImage, SvxIconViewFlags nFlags = SvxIconViewFlags::NONE );
+ SvxIconChoiceCtrlEntry( const OUString& rText, const Image& rImage );
~SvxIconChoiceCtrlEntry () {}
Image GetImage () const { return aImage; }
diff --git a/include/svtools/treelistbox.hxx b/include/svtools/treelistbox.hxx
index 75f27ba02f1b..77dbc23e9050 100644
--- a/include/svtools/treelistbox.hxx
+++ b/include/svtools/treelistbox.hxx
@@ -819,7 +819,7 @@ class SvInplaceEdit2
public:
SvInplaceEdit2( vcl::Window* pParent, const Point& rPos, const Size& rSize,
const OUString& rData, const Link<SvInplaceEdit2&,void>& rNotifyEditEnd,
- const Selection&, bool bMultiLine = false );
+ const Selection& );
~SvInplaceEdit2();
bool KeyInput( const KeyEvent& rKEvt );
void LoseFocus();
diff --git a/include/svx/svdopath.hxx b/include/svx/svdopath.hxx
index 2d0340b68f5c..ccdb218aaf8c 100644
--- a/include/svx/svdopath.hxx
+++ b/include/svx/svdopath.hxx
@@ -125,7 +125,7 @@ public:
// insert point
sal_uInt32 NbcInsPointOld(const Point& rPos, bool bNewObj);
- sal_uInt32 NbcInsPoint(sal_uInt32 i, const Point& rPos, bool bNewObj, bool bHideHim);
+ sal_uInt32 NbcInsPoint(sal_uInt32 i, const Point& rPos, bool bNewObj);
// rip at given point
SdrObject* RipPoint(sal_uInt32 nHdlNum, sal_uInt32& rNewPt0Index);
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);
}