diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-10 04:25:31 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2010-10-10 04:25:31 -0500 |
commit | d02017d4d3cb23b37bb11075976f104b7dfd88b4 (patch) | |
tree | bc1fa513a566aec0ffa4536b738af8c292cc9381 /cppcanvas | |
parent | b71ba8c3f15138b9253c71e9ebf34f474d4b42f4 (diff) |
squash misc warnings
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/uno/uno_mtfrenderer.cxx | 2 | ||||
-rw-r--r-- | cppcanvas/source/uno/uno_mtfrenderer.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cppcanvas/source/uno/uno_mtfrenderer.cxx b/cppcanvas/source/uno/uno_mtfrenderer.cxx index a5ba6e6386b9..03a4ee0f4c1c 100644 --- a/cppcanvas/source/uno/uno_mtfrenderer.cxx +++ b/cppcanvas/source/uno/uno_mtfrenderer.cxx @@ -32,7 +32,7 @@ using namespace ::com::sun::star; -void MtfRenderer::setMetafile (const uno::Sequence< sal_Int8 >& rMtf) throw (uno::RuntimeException) +void MtfRenderer::setMetafile (const uno::Sequence< sal_Int8 >& /*rMtf*/) throw (uno::RuntimeException) { // printf ("MtfRenderer::setMetafile unimplemented, use fast property set or implement me\n"); } diff --git a/cppcanvas/source/uno/uno_mtfrenderer.hxx b/cppcanvas/source/uno/uno_mtfrenderer.hxx index a20ce5487430..bafc4f07cc3c 100644 --- a/cppcanvas/source/uno/uno_mtfrenderer.hxx +++ b/cppcanvas/source/uno/uno_mtfrenderer.hxx @@ -49,7 +49,7 @@ public: // XFastPropertySet // setFastPropertyValue (0, GDIMetaFile*) is used to speedup the rendering - virtual ::com::sun::star::uno::Any SAL_CALL getFastPropertyValue(sal_Int32 nHandle) throw (::com::sun::star::uno::RuntimeException) { return ::com::sun::star::uno::Any(); } + virtual ::com::sun::star::uno::Any SAL_CALL getFastPropertyValue(sal_Int32 /*nHandle*/) throw (::com::sun::star::uno::RuntimeException) { return ::com::sun::star::uno::Any(); } virtual void SAL_CALL setFastPropertyValue(sal_Int32 nHandle, const ::com::sun::star::uno::Any&) throw (::com::sun::star::uno::RuntimeException); private: |