summaryrefslogtreecommitdiff
path: root/plugins/AutoRun
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2014-02-24 14:53:26 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2014-02-24 14:53:26 +0000
commitf8a58bee25b77af07a938cfdf71bdc00c0446b0a (patch)
tree969a7ea5d2b60907d10b7b94a443d8b82dfaeec5 /plugins/AutoRun
parent943543342edbc6e66630810ec4486e1a579abc2f (diff)
removed some unneeded translations
git-svn-id: http://svn.miranda-ng.org/main/trunk@8257 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoRun')
-rw-r--r--plugins/AutoRun/src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AutoRun/src/main.cpp b/plugins/AutoRun/src/main.cpp
index c4dc84640d..1db8bfd406 100644
--- a/plugins/AutoRun/src/main.cpp
+++ b/plugins/AutoRun/src/main.cpp
@@ -100,7 +100,7 @@ static INT_PTR CALLBACK DlgProcAutorunOpts(HWND hwndDlg, UINT msg, WPARAM wParam
return FALSE;
}
-static int AutorunOptInitialise(WPARAM wParam,LPARAM lParam)
+static int AutorunOptInitialise(WPARAM wParam,LPARAM)
{
OPTIONSDIALOGPAGE odp = { sizeof(odp) };
odp.position = 100100000;
@@ -109,7 +109,7 @@ static int AutorunOptInitialise(WPARAM wParam,LPARAM lParam)
odp.pszTitle = ModuleName;
odp.pszGroup = LPGEN("Services");
odp.pfnDlgProc = DlgProcAutorunOpts;
- odp.flags = ODPF_BOLDGROUPS;
+ odp.flags = ODPF_BOLDGROUPS;
Options_AddPage(wParam, &odp);
return 0;
}