summaryrefslogtreecommitdiff
path: root/idlc/source/astscope.cxx
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-04-10 08:20:03 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-04-10 08:20:03 +0000
commitf00741b7c37ee3a3ae94e9bc86f090e66301a862 (patch)
tree7f6b215ada5d4f78af92c2b97924a669f62078d6 /idlc/source/astscope.cxx
parentb8e77d87e4852730769dc9e99a37ff9007aa4279 (diff)
#85939# bugfix for lookup of unknown types in the scope of inherited interfaces
Diffstat (limited to 'idlc/source/astscope.cxx')
-rw-r--r--idlc/source/astscope.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/idlc/source/astscope.cxx b/idlc/source/astscope.cxx
index abc7f112b389..6a65a19549a3 100644
--- a/idlc/source/astscope.cxx
+++ b/idlc/source/astscope.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: astscope.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-10 09:20:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -271,7 +271,8 @@ AstDeclaration* AstScope::lookupInInherited(const OString& scopedName)
{
pDecl = ((AstInterface*)(*iter))->lookupByName(scopedName);
if ( pDecl )
- return pDecl;;
+ return pDecl;
+ iter++;
}
}
// Not found