summaryrefslogtreecommitdiff
path: root/idlc/source/fehelper.cxx
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-04-11 06:29:27 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-04-11 06:29:27 +0000
commit3116185ab01a9ad2fed347f90a1f7c58aab3445d (patch)
tree67c89ecdb7bc3b7549977410aa33ae935736eeb2 /idlc/source/fehelper.cxx
parent093e18e9e0356f69d8a9dcaa5caf2624f2c610ec (diff)
performance optimization, stl iterators
Diffstat (limited to 'idlc/source/fehelper.cxx')
-rw-r--r--idlc/source/fehelper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/idlc/source/fehelper.cxx b/idlc/source/fehelper.cxx
index 66314369016d..be3a2791d070 100644
--- a/idlc/source/fehelper.cxx
+++ b/idlc/source/fehelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fehelper.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: jsc $ $Date: 2001-03-15 12:30:43 $
+ * last change: $Author: jsc $ $Date: 2001-04-11 07:24:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -160,7 +160,7 @@ sal_Bool FeInheritanceHeader::initializeInherits(StringList* pInherits)
idlc()->error()->lookupError(*iter);
return sal_False;
}
- iter++;
+ ++iter;
}
}
return sal_True;
@@ -186,7 +186,7 @@ sal_Bool FeInterfaceHeader::initializeInherits(StringList* pInherits)
idlc()->error()->inheritanceError(getName(), *iter);
return sal_False;
}
- iter++;
+ ++iter;
}
return sal_True;
}