summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unoidl/source/sourceprovider-parser.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoidl/source/sourceprovider-parser.y b/unoidl/source/sourceprovider-parser.y
index 6029151a47ae..7d5f108fae2f 100644
--- a/unoidl/source/sourceprovider-parser.y
+++ b/unoidl/source/sourceprovider-parser.y
@@ -1654,7 +1654,7 @@ attributeAccessDecl:
assert(!pad->attributes.empty());
pad->attributes.back().getExceptions = *$2;
delete $2;
- $$ = unoidl::detail::SourceProviderAccessDecls::ACCESS_DECL_GET;
+ $$ = unoidl::detail::ACCESS_DECL_GET;
}
| TOK_SET exceptionSpec ';'
{
@@ -1673,7 +1673,7 @@ attributeAccessDecl:
+ " cannot have set access declaration"));
YYERROR;
}
- $$ = unoidl::detail::SourceProviderAccessDecls::ACCESS_DECL_SET;
+ $$ = unoidl::detail::ACCESS_DECL_SET;
}
;