diff options
Diffstat (limited to 'plugins/SpellChecker/src')
| -rw-r--r-- | plugins/SpellChecker/src/options.cpp | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/SpellChecker/src/options.cpp b/plugins/SpellChecker/src/options.cpp index dd574537da..748e80163e 100644 --- a/plugins/SpellChecker/src/options.cpp +++ b/plugins/SpellChecker/src/options.cpp @@ -55,8 +55,7 @@ static OptPageControl autoReplaceControls[] = {  int InitOptionsCallback(WPARAM wParam,LPARAM lParam)
  {
 -	OPTIONSDIALOGPAGE odp = { 0 };
 -	odp.cbSize = sizeof(odp);
 +	OPTIONSDIALOGPAGE odp = { sizeof(odp) };
  	odp.hInstance = hInst;
  	odp.pszGroup = LPGEN("Message Sessions");
  	odp.pszTitle = LPGEN("Spell Checker");
 @@ -74,7 +73,6 @@ int InitOptionsCallback(WPARAM wParam,LPARAM lParam)  	odp.pszTemplate = MAKEINTRESOURCEA(IDD_REPLACEMENTS);
  	odp.flags = ODPF_BOLDGROUPS;
  	Options_AddPage(wParam, &odp);
 -
  	return 0;
  }
  | 
