diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-19 09:48:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-19 10:44:05 +0000 |
commit | 1658bd231bc662504a072097dc614c29fe2e116d (patch) | |
tree | 00e1036c841aa7c228d443c34cdc5e88b8054ea3 /include/registry | |
parent | 4f86b7a86cae630c19f6f0d1b4d6672c25e2eb3c (diff) |
loplugin:unusedenumvalues
Change-Id: I9dcc9f73af6db5b4f7cc946bc28931e5c230b34c
Reviewed-on: https://gerrit.libreoffice.org/29012
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/registry')
-rw-r--r-- | include/registry/regtype.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/registry/regtype.h b/include/registry/regtype.h index f36edecc962e..4677cbe33ecd 100644 --- a/include/registry/regtype.h +++ b/include/registry/regtype.h @@ -81,8 +81,6 @@ enum class SAL_DLLPUBLIC_RTTI RegError { /// no error. NO_ERROR, - /// internal registry error. - INTERNAL_ERROR, /// registry is not open. REGISTRY_NOT_OPEN, @@ -131,23 +129,6 @@ enum class SAL_DLLPUBLIC_RTTI RegError the value of a key already exists and the merge process will replace it. */ MERGE_CONFLICT, - - /** a recursion was detected resolving different link targets (no longer - used). - */ - DETECT_RECURSION, - /** the link is invalid and can not be resolved (now used by all - link-related operations, as links are no longer supported). - */ - INVALID_LINK, - /// the specified linkname is not valid (no longer used). - INVALID_LINKNAME, - /// the linknane is not valid (no longer used). - INVALID_LINKTARGET, - /// the link target points to a nonexisting key (no longer used). - LINKTARGET_NOT_EXIST, - /// the reserved buffer for the resolved keyname is to small. - BUFFERSIZE_TOSMALL }; /// specify the calling convention for the registry API |