diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-11-29 12:35:17 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-11-29 12:35:17 +0000 |
commit | 905fc2ec8293372ae10cfaa0f0793fdd981b21e1 (patch) | |
tree | aebced484fee3219445f1ea6289ec0c1fad64681 /sfx2 | |
parent | 9743c8a24d0666f2b4b2c9bb5337b6eba9633c2b (diff) |
#i10000# order of template parameters for sequenceToX and XToSequence templates changed.
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appuno.cxx | 8 | ||||
-rw-r--r-- | sfx2/source/view/sfxbasecontroller.cxx | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx index d49f96584e5e..c953551b7690 100644 --- a/sfx2/source/appl/appuno.cxx +++ b/sfx2/source/appl/appuno.cxx @@ -2,9 +2,9 @@ * * $RCSfile: appuno.cxx,v $ * - * $Revision: 1.102 $ + * $Revision: 1.103 $ * - * last change: $Author: obo $ $Date: 2004-11-26 09:56:18 $ + * last change: $Author: rt $ $Date: 2004-11-29 13:34:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1933,7 +1933,7 @@ throw (::com::sun::star::uno::RuntimeException) } ::com::sun::star::uno::Sequence< sal_Int16 > aSeq = - comphelper::containerToSequence< std::list< sal_Int16 >, sal_Int16 >( aGroupList ); + comphelper::containerToSequence< sal_Int16, std::list< sal_Int16 > >( aGroupList ); return aSeq; } @@ -1981,7 +1981,7 @@ throw (::com::sun::star::uno::RuntimeException) } ::com::sun::star::uno::Sequence< ::com::sun::star::frame::DispatchInformation > aSeq = - comphelper::containerToSequence< std::list< ::com::sun::star::frame::DispatchInformation >, ::com::sun::star::frame::DispatchInformation >( aCmdList ); + comphelper::containerToSequence< ::com::sun::star::frame::DispatchInformation, std::list< ::com::sun::star::frame::DispatchInformation > >( aCmdList ); return aSeq; } diff --git a/sfx2/source/view/sfxbasecontroller.cxx b/sfx2/source/view/sfxbasecontroller.cxx index 5c719ef5bb04..39250bbae188 100644 --- a/sfx2/source/view/sfxbasecontroller.cxx +++ b/sfx2/source/view/sfxbasecontroller.cxx @@ -2,9 +2,9 @@ * * $RCSfile: sfxbasecontroller.cxx,v $ * - * $Revision: 1.58 $ + * $Revision: 1.59 $ * - * last change: $Author: obo $ $Date: 2004-11-17 15:35:09 $ + * last change: $Author: rt $ $Date: 2004-11-29 13:35:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1433,7 +1433,7 @@ throw (::com::sun::star::uno::RuntimeException) } ::com::sun::star::uno::Sequence< sal_Int16 > aSeq = - comphelper::containerToSequence< std::list< sal_Int16 >, sal_Int16 >( aGroupList ); + comphelper::containerToSequence< sal_Int16 >( aGroupList ); return aSeq; } @@ -1482,7 +1482,7 @@ throw (::com::sun::star::uno::RuntimeException) } ::com::sun::star::uno::Sequence< ::com::sun::star::frame::DispatchInformation > aSeq = - comphelper::containerToSequence< std::list< ::com::sun::star::frame::DispatchInformation >, ::com::sun::star::frame::DispatchInformation >( aCmdList ); + comphelper::containerToSequence< ::com::sun::star::frame::DispatchInformation, std::list< ::com::sun::star::frame::DispatchInformation > >( aCmdList ); return aSeq; } |