summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-06 15:02:40 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-07 07:19:59 +0100
commitc947a25b3a785f8d43160671f79e3bb503dfb1ae (patch)
tree5617da65af355bb2122cd7a09097eff62f4c4b43 /basic
parentf7a57f3a1b3bf357b8dd9401b6d5d2525497967e (diff)
loplugin:countusersofdefaultparams in basctl..basegfx
Change-Id: I515acfb9de1f6dff1de94a60055c5b600e5e5241 Reviewed-on: https://gerrit.libreoffice.org/45957 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/inc/expr.hxx2
-rw-r--r--basic/source/runtime/inputbox.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/inc/expr.hxx b/basic/source/inc/expr.hxx
index cefad1957a25..cc1d82ac2347 100644
--- a/basic/source/inc/expr.hxx
+++ b/basic/source/inc/expr.hxx
@@ -175,7 +175,7 @@ protected:
public:
SbiExpression( SbiParser*, SbiExprType = SbSTDEXPR,
SbiExprMode eMode = EXPRMODE_STANDARD, const KeywordSymbolInfo* pKeywordSymbolInfo = nullptr ); // parsing Ctor
- SbiExpression( SbiParser*, double, SbxDataType = SbxDOUBLE );
+ SbiExpression( SbiParser*, double, SbxDataType );
SbiExpression( SbiParser*, const SbiSymDef&, SbiExprListPtr = nullptr );
~SbiExpression();
OUString& GetName() { return aArgName; }
diff --git a/basic/source/runtime/inputbox.cxx b/basic/source/runtime/inputbox.cxx
index 1d0e4e335e3c..2fdb4e057752 100644
--- a/basic/source/runtime/inputbox.cxx
+++ b/basic/source/runtime/inputbox.cxx
@@ -45,7 +45,7 @@ class SvRTLInputBox : public ModalDialog
public:
SvRTLInputBox( vcl::Window* pParent, const OUString& rPrompt, const OUString& rTitle,
- const OUString& rDefault, long nXTwips = -1, long nYTwips = -1 );
+ const OUString& rDefault, long nXTwips, long nYTwips );
virtual ~SvRTLInputBox() override { disposeOnce(); }
virtual void dispose() override;
OUString GetText() const override { return aText; }