From aa68fcbde65dfe315d776948f4e6e39a08a8f719 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Thu, 2 Apr 2015 06:09:25 +0000 Subject: [PATCH] [STOBJECT] Reorder volume menu items patch by Jared CORE-9468 svn path=/trunk/; revision=67011 --- reactos/dll/shellext/stobject/volume.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/shellext/stobject/volume.cpp b/reactos/dll/shellext/stobject/volume.cpp index 9d407cc0a70..2811707305b 100644 --- a/reactos/dll/shellext/stobject/volume.cpp +++ b/reactos/dll/shellext/stobject/volume.cpp @@ -216,12 +216,12 @@ static void _ShowContextMenu(CSysTray * pSysTray) { WCHAR strAdjust[128]; WCHAR strOpen[128]; - LoadStringW(g_hInstance, IDS_VOL_ADJUST, strAdjust, _countof(strAdjust)); LoadStringW(g_hInstance, IDS_VOL_OPEN, strOpen, _countof(strOpen)); + LoadStringW(g_hInstance, IDS_VOL_ADJUST, strAdjust, _countof(strAdjust)); HMENU hPopup = CreatePopupMenu(); - AppendMenuW(hPopup, MF_STRING, IDS_VOL_ADJUST, strAdjust); AppendMenuW(hPopup, MF_STRING, IDS_VOL_OPEN, strOpen); + AppendMenuW(hPopup, MF_STRING, IDS_VOL_ADJUST, strAdjust); DWORD flags = TPM_RETURNCMD | TPM_NONOTIFY | TPM_RIGHTALIGN | TPM_BOTTOMALIGN; DWORD msgPos = GetMessagePos();