diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-13 17:40:31 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-14 21:02:37 +0100 |
commit | e7a1abeceae18f78b39b49de08e903e98b95b3d5 (patch) | |
tree | 0ffd7075b4b192bfb755ac252cd5cdc8f5b92488 /vbahelper | |
parent | 8bacc347db9fb26dbc49452864347a83fecb355f (diff) |
Remove SC_VBA_FIXME and SC_VBA_STUB
The one usage of SC_VBA_FIXME is replaced by OSL_TRACE directly.
Diffstat (limited to 'vbahelper')
-rw-r--r-- | vbahelper/inc/vbahelper/vbahelper.hxx | 8 | ||||
-rw-r--r-- | vbahelper/source/vbahelper/vbadocumentbase.cxx | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/vbahelper/inc/vbahelper/vbahelper.hxx b/vbahelper/inc/vbahelper/vbahelper.hxx index 2843ce30ade0..cf2d14370440 100644 --- a/vbahelper/inc/vbahelper/vbahelper.hxx +++ b/vbahelper/inc/vbahelper/vbahelper.hxx @@ -263,14 +263,6 @@ public: namespace ov = ooo::vba; -#ifdef DEBUG -# define SC_VBA_FIXME(a) OSL_TRACE( a ) -# define SC_VBA_STUB() SC_VBA_FIXME(( "%s - stubbed\n", __FUNCTION__ )) -#else -# define SC_VBA_FIXME(a) -# define SC_VBA_STUB() -#endif - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vbahelper/source/vbahelper/vbadocumentbase.cxx b/vbahelper/source/vbahelper/vbadocumentbase.cxx index 5230945e6e74..da7b0219f289 100644 --- a/vbahelper/source/vbahelper/vbadocumentbase.cxx +++ b/vbahelper/source/vbahelper/vbadocumentbase.cxx @@ -166,7 +166,7 @@ VbaDocumentBase::Protect( const uno::Any &aPassword ) throw (uno::RuntimeExcepti { rtl::OUString rPassword; uno::Reference< util::XProtectable > xProt( getModel(), uno::UNO_QUERY_THROW ); - SC_VBA_FIXME(("Workbook::Protect stub")); + OSL_TRACE("Workbook::Protect stub"); if( aPassword >>= rPassword ) xProt->protect( rPassword ); else |