elm: efl access: fix the warnings.

There were many warnings while building elm.

--->
./src/lib/elementary/efl_access.eo.h:433:55: warning: duplicate ‘const’ declaration specifier
 -Wduplicate-decl-specifier]
 EOAPI void efl_access_attribute_append(Eo *obj, const const char *key, const const char *value);
<---
This commit is contained in:
Amitesh Singh 2017-11-22 13:45:21 +09:00
parent 11292dec35
commit 3661f71954
1 changed files with 2 additions and 2 deletions

View File

@ -305,8 +305,8 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
[[Add key-value pair identifying object extra attributes
]]
params {
@in key: const(string); [[The string key to give extra information]]
@in value: const(string); [[The string value to give extra information]]
@in key: string; [[The string key to give extra information]]
@in value: string; [[The string value to give extra information]]
}
}
attributes_clear {