(svn r27650) -Codechange: Replace SaveOrLoadMode by FileOperation and DetailedFileType.

This commit is contained in:
alberth
2016-09-04 12:57:43 +00:00
parent df9a9f074a
commit 597380e099
16 changed files with 114 additions and 101 deletions

View File

@@ -47,8 +47,11 @@ enum DetailedFileType {
/** Operation performed on the file. */
enum FileOperation {
FOP_LOAD, ///< File is being loaded.
FOP_SAVE, ///< File is being saved.
FOP_CHECK, ///< Load file for checking and/or preview.
FOP_LOAD, ///< File is being loaded.
FOP_SAVE, ///< File is being saved.
FOP_INVALID, ///< Unknown file operation.
};
/**