commit 83fbf1b07387bb363f659a1d464064cb37882d0c
parent 0590d666a6728415accb000dbea6948dfb725c99
Author: cfillion <cfillion@users.noreply.github.com>
Date: Fri, 28 Oct 2016 19:35:29 -0700
manager: fix Windows build
Diffstat:
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/manager.cpp b/src/manager.cpp
@@ -177,13 +177,13 @@ bool Manager::fillContextMenu(Menu &menu, const int index) const
menu.addAction(AUTO_STR("&Refresh"), ACTION_REFRESH);
- Menu autoInstallMenu = menu.addMenu("&Install new packages");
- const UINT autoInstallGlobal =
- autoInstallMenu.addAction("Use &global setting", ACTION_AUTOINSTALL_GLOBAL);
- const UINT autoInstallOff =
- autoInstallMenu.addAction("Manually", ACTION_AUTOINSTALL_OFF);
- const UINT autoInstallOn =
- autoInstallMenu.addAction("When synchronizing", ACTION_AUTOINSTALL_ON);
+ Menu autoInstallMenu = menu.addMenu(AUTO_STR("&Install new packages"));
+ const UINT autoInstallGlobal = autoInstallMenu.addAction(
+ AUTO_STR("Use &global setting"), ACTION_AUTOINSTALL_GLOBAL);
+ const UINT autoInstallOff = autoInstallMenu.addAction(
+ AUTO_STR("Manually"), ACTION_AUTOINSTALL_OFF);
+ const UINT autoInstallOn = autoInstallMenu.addAction(
+ AUTO_STR("When synchronizing"), ACTION_AUTOINSTALL_ON);
menu.addAction(AUTO_STR("&Copy URL"), ACTION_COPYURL);