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 /svx/workben | |
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 'svx/workben')
-rw-r--r-- | svx/workben/edittest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/workben/edittest.cxx b/svx/workben/edittest.cxx index 619af8bf3186..68f45bb7e430 100644 --- a/svx/workben/edittest.cxx +++ b/svx/workben/edittest.cxx @@ -177,7 +177,7 @@ Reference< XMultiServiceFactory > createApplicationServiceManager() // --- class EditApp ------------------------------------------------- -SV_DECL_PTRARR_DEL( StringList, String*, 0, 4 ); +SV_DECL_PTRARR_DEL( StringList, String*, 0 ); SV_IMPL_PTRARR( StringList, String* ); StringList aSimpleHistory; |