summaryrefslogtreecommitdiff
path: root/worldtime/plugwin.cpp
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-10-30 04:59:55 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-10-30 04:59:55 +0000
commitada33e15355aaf0e222f7aa93063ab1efcdd21a1 (patch)
tree18bb5c8f64486aa98f77651175d3e89bb32eb410 /worldtime/plugwin.cpp
parent24472a77e5cf7619a284134d4eea7da8849b98ad (diff)
fixed to options
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@373 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'worldtime/plugwin.cpp')
-rw-r--r--worldtime/plugwin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/worldtime/plugwin.cpp b/worldtime/plugwin.cpp
index 569f1bb..920b19c 100644
--- a/worldtime/plugwin.cpp
+++ b/worldtime/plugwin.cpp
@@ -615,10 +615,10 @@ LRESULT CALLBACK mypluginwindow1proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
case WM_CONTEXTMENU:
{
- OPENOPTIONSDIALOG ood;
+ OPENOPTIONSDIALOG ood = {0};
ood.cbSize = sizeof(ood);
- ood.pszGroup = Translate("Plugins");
- ood.pszPage = Translate("World Time");
+ ood.pszGroup = "Plugins";
+ ood.pszPage = "World Time";
CallService(MS_OPT_OPENOPTIONS, 0, (LPARAM)&ood);
}