diff --git a/src/gui/components/wxDownloadManagerList.cpp b/src/gui/components/wxDownloadManagerList.cpp index dce063e9..3e71ca8d 100644 --- a/src/gui/components/wxDownloadManagerList.cpp +++ b/src/gui/components/wxDownloadManagerList.cpp @@ -310,7 +310,7 @@ void wxDownloadManagerList::OnItemSelected(wxListEvent& event) enum ContextMenuEntries { - kContextMenuRetry, + kContextMenuRetry = wxID_HIGHEST + 1, kContextMenuDownload, kContextMenuPause, kContextMenuResume, diff --git a/src/gui/components/wxGameList.cpp b/src/gui/components/wxGameList.cpp index 4c9cdc5f..35f7dfd1 100644 --- a/src/gui/components/wxGameList.cpp +++ b/src/gui/components/wxGameList.cpp @@ -435,7 +435,7 @@ void wxGameList::OnKeyDown(wxListEvent& event) enum ContextMenuEntries { - kContextMenuRefreshGames, + kContextMenuRefreshGames = wxID_HIGHEST + 1, kContextMenuStart, kWikiPage, @@ -655,7 +655,7 @@ void wxGameList::OnColumnRightClick(wxListEvent& event) { enum ItemIds { - ResetWidth, + ResetWidth = wxID_HIGHEST + 1, ResetOrder, ShowName, diff --git a/src/gui/components/wxTitleManagerList.cpp b/src/gui/components/wxTitleManagerList.cpp index 2a40b25d..57983509 100644 --- a/src/gui/components/wxTitleManagerList.cpp +++ b/src/gui/components/wxTitleManagerList.cpp @@ -728,7 +728,7 @@ void wxTitleManagerList::OnItemSelected(wxListEvent& event) enum ContextMenuEntries { - kContextMenuOpenDirectory, + kContextMenuOpenDirectory = wxID_HIGHEST + 1, kContextMenuDelete, kContextMenuLaunch, kContextMenuVerifyGameFiles, diff --git a/src/gui/windows/PPCThreadsViewer/DebugPPCThreadsWindow.cpp b/src/gui/windows/PPCThreadsViewer/DebugPPCThreadsWindow.cpp index 93eaa596..26390a6c 100644 --- a/src/gui/windows/PPCThreadsViewer/DebugPPCThreadsWindow.cpp +++ b/src/gui/windows/PPCThreadsViewer/DebugPPCThreadsWindow.cpp @@ -10,7 +10,7 @@ enum { // options - REFRESH_ID, + REFRESH_ID = wxID_HIGHEST + 1, AUTO_REFRESH_ID, CLOSE_ID, GPLIST_ID,