diff options
author | Alexander Tkachev | 2016-07-26 11:38:53 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 527ab4cdf6fc314cb260ae329d88794440b875ef (patch) | |
tree | 52e01e1af3f2811eb0ef478254a1cd81e42c555b /gui | |
parent | 091ff83ed66336fffada6453a34710214ac3576d (diff) | |
download | scummvm-rg350-527ab4cdf6fc314cb260ae329d88794440b875ef.tar.gz scummvm-rg350-527ab4cdf6fc314cb260ae329d88794440b875ef.tar.bz2 scummvm-rg350-527ab4cdf6fc314cb260ae329d88794440b875ef.zip |
GUI: Fix StorageWizardDialog warning
Removed extra comma in the enum.
Diffstat (limited to 'gui')
-rw-r--r-- | gui/storagewizarddialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/storagewizarddialog.cpp b/gui/storagewizarddialog.cpp index ba3ebd8597..6d0c504521 100644 --- a/gui/storagewizarddialog.cpp +++ b/gui/storagewizarddialog.cpp @@ -47,7 +47,7 @@ enum { kCodeBoxCmd = 'CdBx', kOpenUrlCmd = 'OpUr', kPasteCodeCmd = 'PsCd', - kStorageWizardContainerReflowCmd = 'SWCr', + kStorageWizardContainerReflowCmd = 'SWCr' }; StorageWizardDialog::StorageWizardDialog(uint32 storageId): |