diff options
Diffstat (limited to 'plugins/Nudge/src')
-rw-r--r-- | plugins/Nudge/src/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/Nudge/src/main.cpp b/plugins/Nudge/src/main.cpp index c39c7d0a17..48b387bfca 100644 --- a/plugins/Nudge/src/main.cpp +++ b/plugins/Nudge/src/main.cpp @@ -222,9 +222,8 @@ static int OnShutdown(WPARAM, LPARAM) void LoadPopupClass()
{
POPUPCLASS ppc = { sizeof(ppc) };
- ppc.flags = PCF_TCHAR;
ppc.pszName = "Nudge";
- ppc.pwszDescription = LPGENW("Show Nudge");
+ ppc.pszDescription.a = LPGEN("Show Nudge");
ppc.hIcon = IcoLib_GetIconByHandle(iconList[0].hIcolib);
ppc.colorBack = NULL;
ppc.colorText = NULL;
|