summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-03-29 10:56:54 +0000
committerRüdiger Timm <rt@openoffice.org>2005-03-29 10:56:54 +0000
commit66d80e4d46b55f8d25610aaec21ed784778ecc25 (patch)
treef04ee6e56c36ba93cddf9af158bcbef5a977e138 /qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
parent5399ee1bd293572682dadc4c7410ccfef5c0767b (diff)
INTEGRATION: CWS qadev22 (1.3.100); FILE MERGED
2005/03/10 16:20:51 sw 1.3.100.1: i44711
Diffstat (limited to 'qadevOOo/tests/java/ifc/style/_ParagraphProperties.java')
-rw-r--r--qadevOOo/tests/java/ifc/style/_ParagraphProperties.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java b/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
index 3c690b366f55..7acfb7f7ebcb 100644
--- a/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
+++ b/qadevOOo/tests/java/ifc/style/_ParagraphProperties.java
@@ -2,9 +2,9 @@
*
* $RCSfile: _ParagraphProperties.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change:$Date: 2003-11-18 16:24:59 $
+ * last change:$Date: 2005-03-29 11:56:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -459,18 +459,18 @@ public class _ParagraphProperties extends MultiPropertyTest {
}
public String[] getElementNames() {
- Enumeration enum = members.keys();
+ Enumeration oEnum = members.keys();
int count = members.size();
String[] res = new String[count];
int i=0;
- while(enum.hasMoreElements())
- res[i] = (String)enum.nextElement();
+ while(oEnum.hasMoreElements())
+ res[i] = (String)oEnum.nextElement();
return res;
}
public com.sun.star.uno.Type getElementType() {
- Enumeration enum = members.keys();
- String key = (String)enum.nextElement();
+ Enumeration oEnum = members.keys();
+ String key = (String)oEnum.nextElement();
Object o = members.get(key);
return new Type(o.getClass());
}