diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-21 15:21:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-21 15:21:16 +0100 |
commit | 7c704c78d3c652504c064b4ac7af55a2c1ee49bb (patch) | |
tree | 623358cf25839219ef4fd90eea4f3eaa55389a1f /rsc/inc | |
parent | 0d5167915b47df7c3e450614ea50d845ba959df3 (diff) |
Removed some unused parameters; added SAL_UNUSED_PARAMETER.
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC)
is used to annotate legitimately unused parameters, so that static
analysis tools can tell legitimately unused parameters from truly
unnecessary ones. To that end, some patches for external modules
are also added, that are only applied when compiling with GCC and
add necessary __attribute__ ((unused)) in headers.
Diffstat (limited to 'rsc/inc')
-rw-r--r-- | rsc/inc/rscdb.hxx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index c7a4950cbdd5..6b002ee14abf 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -177,7 +177,7 @@ class RscTypCont RscTop * InitClassColor( RscTop * pSuper, RscEnum * pColor ); RscTop * InitClassImage( RscTop * pSuper, RscTop *pClassBitmap, RscTop * pClassColor ); - RscTop * InitClassImageList( RscTop * pSuper, RscTop *pClassBitmap, + RscTop * InitClassImageList( RscTop * pSuper, RscTop * pClassColor, RscCont * pStrLst ); RscTop * InitClassWindow( RscTop * pSuper, RscEnum * pMapUnit, RscArray * pLangGeo ); @@ -221,8 +221,7 @@ class RscTypCont RscTop * InitClassNumericFormatter( RscTop * pSuper ); RscTop * InitClassMetricFormatter( RscTop * pSuper, RscEnum * pFieldUnits ); - RscTop * InitClassCurrencyFormatter( RscTop * pSuper, - RscEnum * pFieldUnits ); + RscTop * InitClassCurrencyFormatter( RscTop * pSuper ); RscTop * InitClassDateFormatter( RscTop * pSuper, RscTop * pClassDate ); RscTop * InitClassTimeFormatter( RscTop * pSuper, RscTop * pClassTime, RscEnum * pTimeFieldFormat ); @@ -240,8 +239,8 @@ class RscTypCont RscTop * InitClassMetricBox( RscTop * pSuper ); RscTop * InitClassCurrencyBox( const char * pClassName, sal_uInt32 nRT, RscTop * pSuper ); - RscTop * InitClassDateBox( RscTop * pSuper, RscTop * pClassDate ); - RscTop * InitClassTimeBox( RscTop * pSuper, RscTop * pClassTime ); + RscTop * InitClassDateBox( RscTop * pSuper ); + RscTop * InitClassTimeBox( RscTop * pSuper ); RscTop * InitClassDockingWindow( RscTop * pSuper, RscEnum * pMapUnit ); @@ -254,8 +253,7 @@ class RscTypCont RscTop * InitClassMoreButton( RscTop * pSuper, RscEnum * pMapUnit ); RscTop * InitClassFloatingWindow( RscTop * pSuper, RscEnum * pMapUnit ); - RscTop * InitClassTabControlItem( RscTop * pSuper, - RscTop * pClassTabPage ); + RscTop * InitClassTabControlItem( RscTop * pSuper ); RscTop * InitClassTabControl( RscTop * pSuper, RscTop * pClassTabControlItem ); RscTop * InitClassSfxStyleFamilyItem( RscTop * pSuper, @@ -343,7 +341,7 @@ public: void ClearSysNames(); ERRTYPE WriteRc( WriteRcContext& rContext ); void WriteSrc( FILE * fOutput, sal_uLong nFileIndex, - CharSet nCharSet, sal_Bool bName = sal_True ); + sal_Bool bName = sal_True ); ERRTYPE WriteHxx( FILE * fOutput, sal_uLong nFileKey); ERRTYPE WriteCxx( FILE * fOutput, sal_uLong nFileKey, const rtl::OString& rHxxName ); |