io/source/stm/opump.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
New commits: commit 609402c6167c33f74b17e0c6c4ba093b343abd01 Author: Stephan Bergmann <[email protected]> AuthorDate: Wed May 4 09:44:30 2022 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed May 4 11:46:07 2022 +0200 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 <[email protected]> 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();
