aboutsummaryrefslogtreecommitdiff
path: root/common/error.h
diff options
context:
space:
mode:
authorMax Horn2009-10-08 21:28:57 +0000
committerMax Horn2009-10-08 21:28:57 +0000
commit3399c3aeb638ae874557c72b4ab4db016ff152c8 (patch)
treef476b2a87837568da3bcdaf031f4eb61293f5086 /common/error.h
parent2ab906bafd7e154bb9e333d7e76fe2a714478efd (diff)
downloadscummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.tar.gz
scummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.tar.bz2
scummvm-rg350-3399c3aeb638ae874557c72b4ab4db016ff152c8.zip
Change doxygen inline comments from "//!" to "///" as proposed on -devel
svn-id: r44802
Diffstat (limited to 'common/error.h')
-rw-r--r--common/error.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/common/error.h b/common/error.h
index d91ce2971a..30142926ca 100644
--- a/common/error.h
+++ b/common/error.h
@@ -44,26 +44,26 @@ namespace Common {
* kPathInvalid, kPathIsInvalid, kInvalidPathError
*/
enum Error {
- kNoError = 0, //!< No error occured
- kInvalidPathError, //!< Engine initialization: Invalid game path was passed
- kNoGameDataFoundError, //!< Engine initialization: No game data was found in the specified location
- kUnsupportedGameidError, //!< Engine initialization: Gameid not supported by this (Meta)Engine
- kUnsupportedColorMode, //!< Engine initialization: Engine does not support backend's color mode
+ kNoError = 0, ///< No error occured
+ kInvalidPathError, ///< Engine initialization: Invalid game path was passed
+ kNoGameDataFoundError, ///< Engine initialization: No game data was found in the specified location
+ kUnsupportedGameidError, ///< Engine initialization: Gameid not supported by this (Meta)Engine
+ kUnsupportedColorMode, ///< Engine initialization: Engine does not support backend's color mode
- kReadPermissionDenied, //!< Unable to read data due to missing read permission
- kWritePermissionDenied, //!< Unable to write data due to missing write permission
+ kReadPermissionDenied, ///< Unable to read data due to missing read permission
+ kWritePermissionDenied, ///< Unable to write data due to missing write permission
// The following three overlap a bit with kInvalidPathError and each other. Which to keep?
- kPathDoesNotExist, //!< The specified path does not exist
- kPathNotDirectory, //!< The specified path does not point to a directory
- kPathNotFile, //!< The specified path does not point to a file
+ kPathDoesNotExist, ///< The specified path does not exist
+ kPathNotDirectory, ///< The specified path does not point to a directory
+ kPathNotFile, ///< The specified path does not point to a file
kCreatingFileFailed,
- kReadingFailed, //!< Failed creating a (savestate) file
- kWritingFailed, //!< Failure to write data -- disk full?
+ kReadingFailed, ///< Failed creating a (savestate) file
+ kWritingFailed, ///< Failure to write data -- disk full?
- kUnknownError //!< Catch-all error, used if no other error code matches
+ kUnknownError ///< Catch-all error, used if no other error code matches
};
} // End of namespace Common