summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/qa/complex/reportdesign/ReportDesignerTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java b/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java
index 531c6a33d4a3..7ae14692f619 100644
--- a/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java
+++ b/reportdesign/qa/complex/reportdesign/ReportDesignerTest.java
@@ -99,7 +99,7 @@ class PropertyHelper
@param _aArrayList
@return a PropertyValue[]
*/
- public static PropertyValue[] createPropertyValueArrayFormArrayList(ArrayList _aPropertyList)
+ public static PropertyValue[] createPropertyValueArrayFormArrayList(ArrayList<PropertyValue> _aPropertyList)
{
// copy the whole PropertyValue List to an PropertyValue Array
PropertyValue[] aSaveProperties = null;
@@ -385,7 +385,7 @@ public class ReportDesignerTest
// sSpecial);
}
- private void loadAndStoreReports(XNameAccess _xNameAccess, ArrayList _aPropertyList, int _nType)
+ private void loadAndStoreReports(XNameAccess _xNameAccess, ArrayList<PropertyValue> _aPropertyList, int _nType)
{
if (_xNameAccess != null)
{
@@ -501,7 +501,7 @@ public class ReportDesignerTest
}
}
- private XComponent loadComponent(String _sName, Object _xComponent, ArrayList _aPropertyList)
+ private XComponent loadComponent(String _sName, Object _xComponent, ArrayList<PropertyValue> _aPropertyList)
{
XComponent xDocComponent = null;
XComponentLoader xComponentLoader = UnoRuntime.queryInterface(XComponentLoader.class, _xComponent);
mit/configmgr?h=feature/ooxml-analyze&id=543158edba6678d3d76eee983a9d4edd2a422fee'>Require XComponentContext.getServiceManager to throw instead of returning nullStephan Bergmann 2012-09-17migrate some of the biggest consumer of osl_*InterlockedCount to osl_atomicNorbert Thiebaud