[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - extensions/source

Norbert Thiebaud nthiebaud at gmail.com
Sat Apr 11 13:22:52 PDT 2015


 extensions/source/bibliography/datman.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d4c3e1eed1e66f2ee579d05514df96872e5d41ba
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Sat Apr 11 13:17:03 2015 -0500

    some compiler do not like >> but prefer > > in template syntax
    
    ebdaab9d4a042f1338f97628cf0c0f294d7dc059 introduced
    cppu::UnoType<uno::Sequence<OUString>>::get());
    which made some compiler unhappy.
    
    Change-Id: I78b4f4a496b7c40d7b2dad46ad58d3500fd93aed
    Reviewed-on: https://gerrit.libreoffice.org/15250
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/extensions/source/bibliography/datman.cxx b/extensions/source/bibliography/datman.cxx
index 751f692..2171de9 100644
--- a/extensions/source/bibliography/datman.cxx
+++ b/extensions/source/bibliography/datman.cxx
@@ -1395,7 +1395,7 @@ Reference< awt::XControlModel > BibDataManager::loadControlModel(
                 //pListSourceArr[0] = "select TypeName, TypeIndex from TypeNms";
                 for(sal_Int32 i = 0; i < TYPE_COUNT; ++i)
                     pListSourceArr[i] = OUString::number(i);
-                aAny.setValue(&aListSource, cppu::UnoType<uno::Sequence<OUString>>::get());
+                aAny.setValue(&aListSource, cppu::UnoType< uno::Sequence< OUString > >::get());
 
                 xPropSet->setPropertyValue("ListSource", aAny);
 
@@ -1426,7 +1426,7 @@ Reference< awt::XControlModel > BibDataManager::loadControlModel(
                 // empty string if an invalid value no values is set
                 pValuesArr[TYPE_COUNT] = OUString();
 
-                aAny.setValue(&aValues, cppu::UnoType<uno::Sequence<OUString>>::get());
+                aAny.setValue(&aValues, cppu::UnoType< uno::Sequence< OUString > >::get());
 
                 xPropSet->setPropertyValue("StringItemList", aAny);
 


More information about the Libreoffice-commits mailing list