summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-03-26 12:49:00 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-03-26 12:49:00 +0000
commitcef829e634ea2122faeb186ed15641f15ae16f3a (patch)
tree1944db4c59bc84f7677f1f945e87d1a993644b17 /shell
parent6dfaa70f3e3b680092fb408d7c4e2b9f38be6e7f (diff)
INTEGRATION: CWS mingwport03 (1.2.234); FILE MERGED
2006/09/18 14:33:35 vg 1.2.234.1: #i53572# MinGW port
Diffstat (limited to 'shell')
-rw-r--r--shell/source/all/zipfile/zipexcptn.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/all/zipfile/zipexcptn.hxx b/shell/source/all/zipfile/zipexcptn.hxx
index ff82e98152ab..b98dc6df594f 100644
--- a/shell/source/all/zipfile/zipexcptn.hxx
+++ b/shell/source/all/zipfile/zipexcptn.hxx
@@ -14,7 +14,7 @@ class RuntimeException : public std::exception
{
public:
RuntimeException(int Error);
- virtual ~RuntimeException();
+ virtual ~RuntimeException() throw();
int GetErrorCode() const;
@@ -40,7 +40,7 @@ class Win32Exception : public RuntimeException
{
public:
Win32Exception(int Error);
- virtual ~Win32Exception();
+ virtual ~Win32Exception() throw();
virtual const char* what() const throw();