diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-03-30 07:18:13 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-03-30 07:18:13 +0000 |
commit | b551e977af23009a3a55c413635aba047d1606f3 (patch) | |
tree | 8b7c7138322a1061edc43bb4a5a12603a999d7bc /comphelper | |
parent | 770d25feee8b18a0af3c0554251ee921da8c72fe (diff) |
INTEGRATION: CWS presfixes02 (1.2.2); FILE MERGED
2005/03/17 09:32:21 dbo 1.2.2.1: #i39513# modified sception handling switch
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/scopeguard.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/misc/scopeguard.cxx b/comphelper/source/misc/scopeguard.cxx index 444faf31fcdb..de98c2093ebb 100644 --- a/comphelper/source/misc/scopeguard.cxx +++ b/comphelper/source/misc/scopeguard.cxx @@ -2,9 +2,9 @@ * * $RCSfile: scopeguard.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2005-03-10 14:00:09 $ + * last change: $Author: rt $ $Date: 2005-03-30 08:18:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -69,7 +69,7 @@ ScopeGuard::~ScopeGuard() { if (m_func) { - if (m_bIgnoreExceptions) + if (m_excHandling == IGNORE_EXCEPTIONS) { try { m_func(); |