summaryrefslogtreecommitdiff
path: root/shell/source/win32/ooofilereader/metainforeader.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-07-13 18:39:42 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-07-13 18:39:42 +0200
commit67badfc9da5254d7c9fba2101157c6f6230611de (patch)
treee345e6e416148d322acdf6a977a66e914bb02587 /shell/source/win32/ooofilereader/metainforeader.cxx
parentcbce40e965acef51822b31d73da5fbc271fbcad0 (diff)
Code deliberately not linking against sal just can't use OSL_ENSURE
Change-Id: I20820ea382ac9933bf2c6118d466625120b49d67
Diffstat (limited to 'shell/source/win32/ooofilereader/metainforeader.cxx')
-rw-r--r--shell/source/win32/ooofilereader/metainforeader.cxx13
1 files changed, 4 insertions, 9 deletions
diff --git a/shell/source/win32/ooofilereader/metainforeader.cxx b/shell/source/win32/ooofilereader/metainforeader.cxx
index 442c12ad553e..d9c08c77aa7d 100644
--- a/shell/source/win32/ooofilereader/metainforeader.cxx
+++ b/shell/source/win32/ooofilereader/metainforeader.cxx
@@ -17,11 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#undef OSL_DEBUG_LEVEL
-
-
-#include <osl/diagnose.h>
-
#include "internal/metainforeader.hxx"
#include "dummytag.hxx"
#include "simpletag.hxx"
@@ -60,11 +55,11 @@ CBaseReader( DocumentName )
}
catch(xml_parser_exception& ex)
{
- OSL_ENSURE(false, ex.what());
+ // OSL_ENSURE(false, ex.what());
}
catch(...)
{
- OSL_ENSURE(false, "Unknown error");
+ // OSL_ENSURE(false, "Unknown error");
}
}
@@ -97,11 +92,11 @@ try
}
catch(xml_parser_exception& ex)
{
- OSL_ENSURE(false, ex.what());
+ // OSL_ENSURE(false, ex.what());
}
catch(...)
{
- OSL_ENSURE(false, "Unknown error");
+ // OSL_ENSURE(false, "Unknown error");
}
}