diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-03-30 17:24:07 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-03-30 17:24:07 +1100 |
commit | 4fb1fb5297fa233d50ea0a31d6d54bb4ea9e00f1 (patch) | |
tree | 8a2605872444b6549b288ddf2e362e212e3b0766 | |
parent | b6a43bcbbf9e9a5655fd36fd4c8ef72d585f67b0 (diff) |
Encase graphicsfilter warning in an #ifdef
Change-Id: Ib91edb520c4edbbf63e034f174d21c6a74d03929
-rw-r--r-- | vcl/source/filter/graphicfilter.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx index 56c50e436229..8a649a081681 100644 --- a/vcl/source/filter/graphicfilter.cxx +++ b/vcl/source/filter/graphicfilter.cxx @@ -2282,6 +2282,7 @@ int GraphicFilter::LoadGraphic( const OUString &rPath, const OUString &rFilterNa OUString aReturnString; +#ifdef DBG_UTIL switch (nRes) { case GRFILTER_OPENERROR: @@ -2311,6 +2312,7 @@ int GraphicFilter::LoadGraphic( const OUString &rPath, const OUString &rFilterNa } SAL_WARN_IF( nRes, "vcl.filter", "Problem importing graphic " << rPath << ". Reason: " << aReturnString ); +#endif return nRes; } |