summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-28 23:16:06 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-28 23:16:06 +0200
commit7aec3935c08e8897d34107a7572d6b6f823fcdc0 (patch)
treeeeff1b52d7ac2d9c3f0ca6a795151a36b491aa6d
parentfac7d76d447fd38a690144c6a0d1a427b2273215 (diff)
Fix check for empty stack
Regression introduced with ecfcc545433d30e3b70fd0c909cce782edbdee39 "Replace Stack with std::stack< std::pair< XclObj*, XclEscherHostAppData* > >" Change-Id: Ib4776a2df3c2f9648f2e1af70c7d20485a7ff888
-rw-r--r--sc/source/filter/xcl97/xcl97esc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xcl97/xcl97esc.cxx b/sc/source/filter/xcl97/xcl97esc.cxx
index 69195c54a67e..0191c89cc081 100644
--- a/sc/source/filter/xcl97/xcl97esc.cxx
+++ b/sc/source/filter/xcl97/xcl97esc.cxx
@@ -109,7 +109,7 @@ XclEscherEx::XclEscherEx( const XclExpRoot& rRoot, XclExpObjectManager& rObjMgr,
XclEscherEx::~XclEscherEx()
{
- OSL_ENSURE( !aStack.empty(), "~XclEscherEx: stack not empty" );
+ OSL_ENSURE( aStack.empty(), "~XclEscherEx: stack not empty" );
DeleteCurrAppData();
delete pTheClientData;
}