[Libreoffice-commits] core.git: include/oox oox/source
Caolán McNamara
caolanm at redhat.com
Thu Jul 10 07:38:13 PDT 2014
include/oox/ppt/pptimport.hxx | 2 +-
oox/source/ppt/pptimport.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 3beb45c9a193c66a135f0321be84c9d7e7c1a96d
Author: Caolán McNamara <caolanm at redhat.com>
Date: Thu Jul 10 14:31:03 2014 +0100
coverity#1224997 Uncaught exception
and
coverity#1224996 Uncaught exception
Change-Id: I36ea602a93471d826859bef739c4165117cc4cd9
diff --git a/include/oox/ppt/pptimport.hxx b/include/oox/ppt/pptimport.hxx
index d304792..8ec789e 100644
--- a/include/oox/ppt/pptimport.hxx
+++ b/include/oox/ppt/pptimport.hxx
@@ -42,7 +42,7 @@ public:
virtual ~PowerPointImport();
// from FilterBase
- virtual bool importDocument() throw() SAL_OVERRIDE;
+ virtual bool importDocument() SAL_OVERRIDE;
virtual bool exportDocument() throw() SAL_OVERRIDE;
virtual const ::oox::drawingml::Theme* getCurrentTheme() const SAL_OVERRIDE;
diff --git a/oox/source/ppt/pptimport.cxx b/oox/source/ppt/pptimport.cxx
index 0306ab1..62ed37f 100644
--- a/oox/source/ppt/pptimport.cxx
+++ b/oox/source/ppt/pptimport.cxx
@@ -75,7 +75,7 @@ PowerPointImport::~PowerPointImport()
{
}
-bool PowerPointImport::importDocument() throw()
+bool PowerPointImport::importDocument()
{
/* to activate the PPTX dumper, define the environment variable
OOO_PPTXDUMPER and insert the full path to the file
More information about the Libreoffice-commits
mailing list