diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-12-20 11:18:03 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-12-20 11:18:03 +0200 |
commit | 1e840cc7c2b1cfac6f2935e6929d234464eac3ee (patch) | |
tree | 6a134ff66d0bc9524fb3c7f919fbc2058de8c34d /include | |
parent | ac82c8d2b35ea3b3b73eccc58c593d94eb044214 (diff) |
Move silly DBG macro to the only file where it is used
Change-Id: Ie0da09ffccba5ca92f629f38befa56370315feb7
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/export/utils.hxx | 9 |
1 files changed, 0 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 ); |