[Libreoffice-commits] core.git: unoidl/source

Stephan Bergmann sbergman at redhat.com
Thu Sep 12 08:55:29 PDT 2013


 unoidl/source/sourceprovider-parser.y |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7071bebc00ef86e8ce10b66766882cf96214998b
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Sep 12 17:54:54 2013 +0200

    Fix C++11'ism
    
    Change-Id: Ia2ecbbc9262b4e2b794914030f88e1c9d792cb5e

diff --git a/unoidl/source/sourceprovider-parser.y b/unoidl/source/sourceprovider-parser.y
index 6029151..7d5f108 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;
   }
 ;
 


More information about the Libreoffice-commits mailing list