| 84 | } |
| 85 | |
| 86 | void Explorerplusplus::SetMainMenuImages() |
| 87 | { |
| 88 | HMENU mainMenu = GetMenu(m_hContainer); |
| 89 | UINT dpi = m_dpiCompat.GetDpiForWindow(m_hContainer); |
| 90 | |
| 91 | for (const auto &mapping : MAIN_MENU_IMAGE_MAPPINGS) |
| 92 | { |
| 93 | ResourceHelper::SetMenuItemImage(mainMenu, mapping.first, m_iconResourceLoader.get(), mapping.second, dpi, m_menuImages); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | void Explorerplusplus::SetGoMenuName(HMENU hMenu, UINT uMenuID, UINT csidl) |
| 98 | { |
nothing calls this directly
no test coverage detected