diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-16 08:44:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-16 08:44:25 +0000 |
commit | 9e0a09e89c38774dd1af902387a8b25de158b634 (patch) | |
tree | dadfbf2f41ae57a2cde1bd8d4bfd7163bbed2aab /sc | |
parent | 6509f546d0d68351644a21b45548042d1589ebe7 (diff) |
WaE: silence some warnings
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/vba/vbarange.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx index 9c6df8822d7b..6ab4dafb015c 100644 --- a/sc/source/ui/vba/vbarange.cxx +++ b/sc/source/ui/vba/vbarange.cxx @@ -1135,6 +1135,7 @@ bool getScRangeListForAddress( const rtl::OUString& sName, ScDocShell* pDocSh, S { bLocalName = pRangeName->findByName(sAddress) != NULL; // TODO: Handle local names correctly. + (void)bLocalName; } } } @@ -3564,7 +3565,7 @@ ScVbaRange::Sort( const uno::Any& Key1, const uno::Any& Order1, const uno::Any& // #FIXME #TODO // The SortMethod param is not processed ( not sure what its all about, need to - + (void)nSortMethod; } uno::Reference< excel::XRange > SAL_CALL |