diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de (CIB)> | 2018-03-18 00:24:37 +0100 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@cib.de> | 2018-04-06 18:06:35 +0200 |
commit | 6bdae9bd89ec629dded42414b0c96e998046a780 (patch) | |
tree | b0cdab691c5485b8766dd75dc753552998c932c6 | |
parent | c509bee411dc2a3ed7ca17183e7fa203962a7d6d (diff) |
SOSAW080: Corrected constructor
Change-Id: Ic1b5ed3c99bc7219a0061e4ece24ea42afd2889a
-rwxr-xr-x | basegfx/source/matrix/b3dhommatrixtools.cxx | 2 | ||||
-rwxr-xr-x | include/basegfx/matrix/b3dhommatrixtools.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/matrix/b3dhommatrixtools.cxx b/basegfx/source/matrix/b3dhommatrixtools.cxx index e1349df7d97a..677c978545ee 100755 --- a/basegfx/source/matrix/b3dhommatrixtools.cxx +++ b/basegfx/source/matrix/b3dhommatrixtools.cxx @@ -24,7 +24,7 @@ namespace basegfx namespace utils { B3DHomMatrix UnoHomogenMatrixToB3DHomMatrix( - const com::sun::star::drawing::HomogenMatrix rMatrixIn) + const com::sun::star::drawing::HomogenMatrix& rMatrixIn) { B3DHomMatrix aRetval; diff --git a/include/basegfx/matrix/b3dhommatrixtools.hxx b/include/basegfx/matrix/b3dhommatrixtools.hxx index 1d4247579690..3c5e8e83ffc2 100755 --- a/include/basegfx/matrix/b3dhommatrixtools.hxx +++ b/include/basegfx/matrix/b3dhommatrixtools.hxx @@ -32,7 +32,7 @@ namespace basegfx B3DHomMatrix. drawing::HomogenMatrix4 is not used by OOo */ BASEGFX_DLLPUBLIC B3DHomMatrix UnoHomogenMatrixToB3DHomMatrix( - const com::sun::star::drawing::HomogenMatrix rMatrixIn); + const com::sun::star::drawing::HomogenMatrix& rMatrixIn); BASEGFX_DLLPUBLIC void B3DHomMatrixToUnoHomogenMatrix( const B3DHomMatrix& rMatrixIn, |