summaryrefslogtreecommitdiff
path: root/unoidl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-09-12 17:54:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-12 17:55:07 +0200
commit7071bebc00ef86e8ce10b66766882cf96214998b (patch)
tree2234fd87474b422b0e4841451a5e99c1bc00423d /unoidl
parent9e5afc4e1be0ae76af3b66bc981d63b1a93c0a70 (diff)
Fix C++11'ism
Change-Id: Ia2ecbbc9262b4e2b794914030f88e1c9d792cb5e
Diffstat (limited to 'unoidl')
-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;
}
;