diff options
Diffstat (limited to 'plugins/AutoRun')
-rw-r--r-- | plugins/AutoRun/src/autorun.h | 2 | ||||
-rw-r--r-- | plugins/AutoRun/src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AutoRun/src/autorun.h b/plugins/AutoRun/src/autorun.h index c6e9a9d724..31fb3c9065 100644 --- a/plugins/AutoRun/src/autorun.h +++ b/plugins/AutoRun/src/autorun.h @@ -12,6 +12,6 @@ #include "Version.h"
#define SUB_KEY _T("Software\\Microsoft\\Windows\\CurrentVersion\\Run")
-#define ModuleName "Autorun"
+#define ModuleName LPGEN("Autorun")
HKEY ROOT_KEY = HKEY_CURRENT_USER;
diff --git a/plugins/AutoRun/src/main.cpp b/plugins/AutoRun/src/main.cpp index 7794fe0f3f..f33a164dd0 100644 --- a/plugins/AutoRun/src/main.cpp +++ b/plugins/AutoRun/src/main.cpp @@ -106,7 +106,7 @@ static int AutorunOptInitialise(WPARAM wParam,LPARAM lParam) odp.position = 100100000;
odp.hInstance = hInst;
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPT_AUTORUN);
- odp.pszTitle = LPGEN(ModuleName);
+ odp.pszTitle = ModuleName;
odp.pszGroup = LPGEN("Services");
odp.pfnDlgProc = DlgProcAutorunOpts;
odp.flags = ODPF_BOLDGROUPS;
|