From 0db25f68ab897953d9ca76ae094cc80e0ad11d34 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 13 Aug 2015 15:30:58 +0200 Subject: remove default value from SfxPoolItem::PutValue more useful to make it explicit. Specifically, otherwise my defaultvalue clang plugin would want to remove lots of places that contains #define constants which, while technically the same as the default value, convey semantic information which is quite useful. Change-Id: I918ad5b0e73ba279fa1b1489b62d900339ff71eb --- include/editeng/adjustitem.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/editeng/adjustitem.hxx') diff --git a/include/editeng/adjustitem.hxx b/include/editeng/adjustitem.hxx index 0711e23f9b4e..b6142e6627ca 100644 --- a/include/editeng/adjustitem.hxx +++ b/include/editeng/adjustitem.hxx @@ -57,7 +57,7 @@ public: virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE; virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE; - virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE; + virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId ) SAL_OVERRIDE; virtual bool GetPresentation( SfxItemPresentation ePres, SfxMapUnit eCoreMetric, -- cgit