(svn r27653) -Fix(r27647): Rename FileOperation enum and values to SaveLoadOperation to avoid nameclash with windows compiler toolkit.

This commit is contained in:
alberth
2016-09-04 16:06:50 +00:00
parent 0b8869930f
commit f286ba8db2
15 changed files with 98 additions and 98 deletions

View File

@@ -46,12 +46,12 @@ enum DetailedFileType {
};
/** Operation performed on the file. */
enum FileOperation {
FOP_CHECK, ///< Load file for checking and/or preview.
FOP_LOAD, ///< File is being loaded.
FOP_SAVE, ///< File is being saved.
enum SaveLoadOperation {
SLO_CHECK, ///< Load file for checking and/or preview.
SLO_LOAD, ///< File is being loaded.
SLO_SAVE, ///< File is being saved.
FOP_INVALID, ///< Unknown file operation.
SLO_INVALID, ///< Unknown file operation.
};
/**