diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-13 13:22:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-14 09:16:06 +0200 |
commit | e50b5526e24ff552def8f08d393037d2c020dc29 (patch) | |
tree | 78dd5361445053d65857e5cc6fc6351da22883fb /include/vcl | |
parent | b14c9d14a10ec9c789594b5a9d0726acb618bc29 (diff) |
remove default value from PrinterOptionsHelper::getIntValue
more useful to make it explicit
Change-Id: I4023fa19fd23ef3a180096a853b2d431d57d2772
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/print.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx index c4cf3159dc83..93f1419c77be 100644 --- a/include/vcl/print.hxx +++ b/include/vcl/print.hxx @@ -593,9 +593,9 @@ class VCL_DLLPUBLIC PrinterOptionsHelper bool getBoolValue( const char* i_pPropName, bool i_bDefault = false ) const { return getBoolValue( OUString::createFromAscii( i_pPropName ), i_bDefault ); } - sal_Int64 getIntValue( const OUString& i_rPropertyName, sal_Int64 i_nDefault = 0 ) const; + sal_Int64 getIntValue( const OUString& i_rPropertyName, sal_Int64 i_nDefault ) const; // convenience for fixed strings - sal_Int64 getIntValue( const char* i_pPropName, sal_Int64 i_nDefault = 0 ) const + sal_Int64 getIntValue( const char* i_pPropName, sal_Int64 i_nDefault ) const { return getIntValue( OUString::createFromAscii( i_pPropName ), i_nDefault ); } OUString getStringValue( const OUString& i_rPropertyName, const OUString& i_rDefault = OUString() ) const; |