summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2015-04-11 13:17:03 -0500
committerCaolán McNamara <caolanm@redhat.com>2015-04-11 20:22:39 +0000
commitaba01a8c4cc1fbd9d4a3bf2b8bbf6582a17e9414 (patch)
treed0cfc57c6b2c2693a036ffd6c6295aa5cbc124d4
parent199891f4ee16bc175727552fc7971c60b3c9a303 (diff)
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/15251 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--extensions/source/bibliography/datman.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/bibliography/datman.cxx b/extensions/source/bibliography/datman.cxx
index 751f692047a0..2171de95db44 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);