diff options
Diffstat (limited to 'idlc/source/parser.y')
-rw-r--r-- | idlc/source/parser.y | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y index c0459163ed80..6e7bf785154f 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -235,7 +235,7 @@ bool includes(AstDeclaration const * type1, AstDeclaration const * type2) { sal_uInt32 ulval; /* sal_uInt32 value */ double dval; /* double value */ float fval; /* float value */ - StringList* slval; /* StringList value */ + std::list< OString >* slval; /* StringList value */ AttributeExceptions::Part attexcpval; AttributeExceptions attexcval; } @@ -1624,8 +1624,8 @@ service_export : */ if ( pScope && $2 ) { - StringList::iterator iter = $2->begin(); - StringList::iterator end = $2->end(); + std::list< OString >::iterator iter = $2->begin(); + std::list< OString >::iterator end = $2->end(); while ( iter != end ) { @@ -1668,8 +1668,8 @@ service_export : */ if ( pScope && $2 ) { - StringList::iterator iter = $2->begin(); - StringList::iterator end = $2->end(); + std::list< OString >::iterator iter = $2->begin(); + std::list< OString >::iterator end = $2->end(); while ( iter != end ) { @@ -1714,8 +1714,8 @@ service_export : */ if ( pScope && $2 ) { - StringList::iterator iter = $2->begin(); - StringList::iterator end = $2->end(); + std::list< OString >::iterator iter = $2->begin(); + std::list< OString >::iterator end = $2->end(); while ( iter != end ) { @@ -1755,8 +1755,8 @@ service_export : */ if ( pScope && $2 ) { - StringList::iterator iter = $2->begin(); - StringList::iterator end = $2->end(); + std::list< OString >::iterator iter = $2->begin(); + std::list< OString >::iterator end = $2->end(); while ( iter != end ) { @@ -2140,7 +2140,7 @@ at_least_one_scoped_name : $$ = $2; } else { - StringList* pScopedNames = new StringList(); + std::list< OString >* pScopedNames = new std::list< OString >(); // coverity [copy_paste_error] pScopedNames->push_back(*$1); $$ = pScopedNames; @@ -2164,7 +2164,7 @@ scoped_names : $$ = $1; } else { - StringList* pNames = new StringList(); + std::list< OString >* pNames = new std::list< OString >(); pNames->push_back(*$4); $$ = pNames; } |