summaryrefslogtreecommitdiffstats
path: root/include/basic/sbxvar.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-11 14:31:00 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-01-12 06:40:03 +0000
commitbbfeab3b13b48c99cfa2f94c8c34bc3efef7faa9 (patch)
treef039c3d27a8a2d449ef1f5c456c752d83929c8bf /include/basic/sbxvar.hxx
parentTango: Update Save icons and support “savemodified” status (diff)
downloadcore-bbfeab3b13b48c99cfa2f94c8c34bc3efef7faa9.tar.gz
core-bbfeab3b13b48c99cfa2f94c8c34bc3efef7faa9.zip
loplugin:unusedmethods unused return value in include/basic
Change-Id: Ib1a006adaa92e257d40a20ff0d8beeb37e7c2fe0 Reviewed-on: https://gerrit.libreoffice.org/21360 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/basic/sbxvar.hxx')
-rw-r--r--include/basic/sbxvar.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/basic/sbxvar.hxx b/include/basic/sbxvar.hxx
index 46092c79ebf7..2f56372d9f3f 100644
--- a/include/basic/sbxvar.hxx
+++ b/include/basic/sbxvar.hxx
@@ -158,10 +158,10 @@ public:
bool PutLong( sal_Int32 );
bool PutSingle( float );
bool PutDouble( double );
- bool PutDate( double );
+ void PutDate( double );
bool PutBool( bool );
- bool PutErr( sal_uInt16 );
- bool PutStringExt( const OUString& ); // with extended analysis (International, "sal_True"/"sal_False")
+ void PutErr( sal_uInt16 );
+ void PutStringExt( const OUString& ); // with extended analysis (International, "sal_True"/"sal_False")
bool PutInt64( sal_Int64 );
bool PutUInt64( sal_uInt64 );
bool PutString( const OUString& );
@@ -170,12 +170,12 @@ public:
bool PutUShort( sal_uInt16 );
bool PutULong( sal_uInt32 );
bool PutEmpty();
- bool PutNull();
+ void PutNull();
// Special methods
- bool PutDecimal( css::bridge::oleautomation::Decimal& rAutomationDec );
+ void PutDecimal( css::bridge::oleautomation::Decimal& rAutomationDec );
bool PutDecimal( SbxDecimal* pDecimal ); // This function is needed for Windows build, don't remove
- bool fillAutomationDecimal( css::bridge::oleautomation::Decimal& rAutomationDec ) const;
+ void fillAutomationDecimal( css::bridge::oleautomation::Decimal& rAutomationDec ) const;
bool PutCurrency( const sal_Int64& );
// Interface for CDbl in Basic
static SbxError ScanNumIntnl( const OUString& rSrc, double& nVal, bool bSingle = false );