summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/oox/export/utils.hxx9
-rw-r--r--sd/source/filter/eppt/pptx-epptooxml.cxx9
2 files changed, 9 insertions, 9 deletions
diff --git a/include/oox/export/utils.hxx b/include/oox/export/utils.hxx
index 95d154df1bb6..53cdfcd9f92d 100644
--- a/include/oox/export/utils.hxx
+++ b/include/oox/export/utils.hxx
@@ -28,15 +28,6 @@
#define BS(x) (x ? "1":"0")
#define USS(x) OUStringToOString( x, RTL_TEXTENCODING_UTF8 ).getStr()
-// FIXME: this should be removed and replaced by SAL_INFO
-#ifndef DBG
-# if OSL_DEBUG_LEVEL > 1
-# define DBG(x) x
-# else
-# define DBG(x)
-# endif
-#endif
-
static inline sal_Int64 PPTtoEMU( sal_Int32 nPPT )
{
return (sal_Int64)( (double)nPPT * 1587.5 );
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx
index e9b02e85cdc7..0e5cdf3296c1 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -91,6 +91,15 @@ using ::com::sun::star::beans::XPropertySetInfo;
using ::com::sun::star::container::XIndexAccess;
using ::sax_fastparser::FSHelperPtr;
+// FIXME: this should be removed and replaced by SAL_INFO
+#ifndef DBG
+# if OSL_DEBUG_LEVEL > 1
+# define DBG(x) x
+# else
+# define DBG(x)
+# endif
+#endif
+
DBG(void dump_pset(Reference< XPropertySet > rXPropSet);)
#define IDS(x) OString(OStringLiteral(#x " ") + OString::number( mnShapeIdMax++ )).getStr()