Hide <-> Show Advanced.

This commit is contained in:
Paul Vriens 2005-06-16 20:39:19 +00:00 committed by Alexandre Julliard
parent a677ac554f
commit ce8b469246
1 changed files with 2 additions and 2 deletions

View File

@ -102,12 +102,12 @@ static void set_advanced(HWND dialog)
if (advanced)
{
state = SW_NORMAL;
LoadString(GetModuleHandle(NULL), IDS_SHOW_ADVANCED, text, 256);
LoadString(GetModuleHandle(NULL), IDS_HIDE_ADVANCED, text, 256);
}
else
{
state = SW_HIDE;
LoadString(GetModuleHandle(NULL), IDS_HIDE_ADVANCED, text, 256);
LoadString(GetModuleHandle(NULL), IDS_SHOW_ADVANCED, text, 256);
}
ShowWindow(GetDlgItem(dialog, IDC_RADIO_AUTODETECT), state);