[Libreoffice-commits] core.git: vcl/inc vcl/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Fri Jan 15 11:43:14 UTC 2021


 vcl/inc/graphic/UnoGraphic.hxx    |    2 +-
 vcl/source/graphic/UnoGraphic.cxx |    3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 15eb93059f8a613338f54aaea4d636b0ac2e3e98
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Jan 15 09:30:38 2021 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Jan 15 12:42:32 2021 +0100

    cid#1470701 Uncaught exception
    
    Change-Id: Iaeaf95681c800192fcf55c77885c2f411c7ec609
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109324
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/inc/graphic/UnoGraphic.hxx b/vcl/inc/graphic/UnoGraphic.hxx
index f6eed8fabdf0..33f97df5b183 100644
--- a/vcl/inc/graphic/UnoGraphic.hxx
+++ b/vcl/inc/graphic/UnoGraphic.hxx
@@ -42,7 +42,7 @@ public:
     virtual ~Graphic() throw() override;
 
     using ::unographic::GraphicDescriptor::init;
-    void init( const ::Graphic& rGraphic ) throw();
+    void init(const ::Graphic& rGraphic);
 
 private:
 
diff --git a/vcl/source/graphic/UnoGraphic.cxx b/vcl/source/graphic/UnoGraphic.cxx
index 4fddaebd6cdb..eeda9d2a38c8 100644
--- a/vcl/source/graphic/UnoGraphic.cxx
+++ b/vcl/source/graphic/UnoGraphic.cxx
@@ -42,8 +42,7 @@ Graphic::~Graphic() throw()
 {
 }
 
-void Graphic::init( const ::Graphic& rGraphic )
-    throw()
+void Graphic::init(const ::Graphic& rGraphic)
 {
     maGraphic = rGraphic;
     unographic::GraphicDescriptor::init(maGraphic);


More information about the Libreoffice-commits mailing list