Cleaned up Enum to set init value to 0

This commit is contained in:
Vincent Gee 2014-11-04 07:15:36 -05:00 committed by Daniel Buckmaster
parent 2ec5af703c
commit ad4b06f2bc

View file

@ -32,7 +32,7 @@
enum MBButtons enum MBButtons
{ {
MBOk, MBOk = 0,
MBOkCancel, MBOkCancel,
MBRetryCancel, MBRetryCancel,
MBSaveDontSave, MBSaveDontSave,
@ -41,7 +41,7 @@ enum MBButtons
enum MBIcons enum MBIcons
{ {
MIWarning, MIWarning = 0,
MIInformation, MIInformation,
MIQuestion, MIQuestion,
MIStop, MIStop,