diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 09:44:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 11:46:07 +0200 |
commit | 609402c6167c33f74b17e0c6c4ba093b343abd01 (patch) | |
tree | b34cb75243d8f203ec66704a7f2d54773f3d5954 /io | |
parent | c1c9905fce26c8058c640f8cee0827d423698875 (diff) |
Just use Any ctor instead of makeAny in io
Change-Id: I3b659072c54dde7f49aa90e5d52d24f5d762654a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133805
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'io')
-rw-r--r-- | io/source/stm/opump.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx index 97f254b6be2a..598d16aa4f61 100644 --- a/io/source/stm/opump.cxx +++ b/io/source/stm/opump.cxx @@ -272,15 +272,15 @@ void Pump::run() } catch ( const IOException & e ) { - fireError( makeAny( e ) ); + fireError( Any( e ) ); } catch ( const RuntimeException & e ) { - fireError( makeAny( e ) ); + fireError( Any( e ) ); } catch ( const Exception & e ) { - fireError( makeAny( e ) ); + fireError( Any( e ) ); } close(); |