diff options
author | Roger Leigh <rleigh@debian.org> | 2013-01-04 23:02:26 +0000 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2013-01-05 00:06:39 +0000 |
commit | a98b7ebd60032800901163fac9228721868157f8 (patch) | |
tree | 4c63c701a5ed6e1da0cd1bce130bdaa606dd2d8c /sbuild/sbuild-keyfile-base.h | |
parent | 883f5504e19302a51d474a94efebc3bb7f824ac4 (diff) | |
download | schroot-a98b7ebd60032800901163fac9228721868157f8.tar.gz |
Replace tabs with spaces in all source code
Diffstat (limited to 'sbuild/sbuild-keyfile-base.h')
-rw-r--r-- | sbuild/sbuild-keyfile-base.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/sbuild/sbuild-keyfile-base.h b/sbuild/sbuild-keyfile-base.h index 2e8c3f20..521ed649 100644 --- a/sbuild/sbuild-keyfile-base.h +++ b/sbuild/sbuild-keyfile-base.h @@ -46,37 +46,37 @@ namespace sbuild /// Configuration parameter priority. enum priority { - PRIORITY_OPTIONAL, ///< The parameter is optional. - PRIORITY_REQUIRED, ///< The parameter is required. - PRIORITY_DISALLOWED, ///< The parameter is not allowed in this context. - PRIORITY_DEPRECATED, ///< The parameter is deprecated, but functional. - PRIORITY_OBSOLETE ///< The parameter is obsolete, and not functional. + PRIORITY_OPTIONAL, ///< The parameter is optional. + PRIORITY_REQUIRED, ///< The parameter is required. + PRIORITY_DISALLOWED, ///< The parameter is not allowed in this context. + PRIORITY_DEPRECATED, ///< The parameter is deprecated, but functional. + PRIORITY_OBSOLETE ///< The parameter is obsolete, and not functional. }; /// Error codes. enum error_code { - BAD_FILE, ///< The file to parse couldn't be opened. - DEPRECATED_KEY, ///< The key is deprecated. - DEPRECATED_KEY_NL, ///< The key is deprecated (no line specified). - DISALLOWED_KEY, ///< The key is not allowed. - DISALLOWED_KEY_NL, ///< The key is not allowed (no line specified). - DUPLICATE_GROUP, ///< The group is a duplicate. - DUPLICATE_KEY, ///< The key is a duplicate. - INVALID_GROUP, ///< The group is invalid. - INVALID_KEY, ///< The key is invalid. - INVALID_LINE, ///< The line is invalid. - MISSING_KEY, ///< The key is missing. - MISSING_KEY_NL, ///< The key is missing (no line specified). - NO_GROUP, ///< No group was specified. - NO_KEY, ///< No key was specified. - OBSOLETE_KEY, ///< The key is obsolete. - OBSOLETE_KEY_NL, ///< The key is obsolete (no line specified). - PASSTHROUGH_G, ///< Pass through exception with group. - PASSTHROUGH_GK, ///< Pass through exception with group and key. - PASSTHROUGH_LG, ///< Pass through exception with line and group. - PASSTHROUGH_LGK, ///< Pass through exception with line, group and key. - UNKNOWN_KEY ///< The key is unknown. + BAD_FILE, ///< The file to parse couldn't be opened. + DEPRECATED_KEY, ///< The key is deprecated. + DEPRECATED_KEY_NL, ///< The key is deprecated (no line specified). + DISALLOWED_KEY, ///< The key is not allowed. + DISALLOWED_KEY_NL, ///< The key is not allowed (no line specified). + DUPLICATE_GROUP, ///< The group is a duplicate. + DUPLICATE_KEY, ///< The key is a duplicate. + INVALID_GROUP, ///< The group is invalid. + INVALID_KEY, ///< The key is invalid. + INVALID_LINE, ///< The line is invalid. + MISSING_KEY, ///< The key is missing. + MISSING_KEY_NL, ///< The key is missing (no line specified). + NO_GROUP, ///< No group was specified. + NO_KEY, ///< No key was specified. + OBSOLETE_KEY, ///< The key is obsolete. + OBSOLETE_KEY_NL, ///< The key is obsolete (no line specified). + PASSTHROUGH_G, ///< Pass through exception with group. + PASSTHROUGH_GK, ///< Pass through exception with group and key. + PASSTHROUGH_LG, ///< Pass through exception with line and group. + PASSTHROUGH_LGK, ///< Pass through exception with line, group and key. + UNKNOWN_KEY ///< The key is unknown. }; /// Exception type. |