Commit 0119d770 authored by Alexandre Julliard's avatar Alexandre Julliard

winecfg: Make some variables static.

parent e179c20b
......@@ -423,8 +423,8 @@ static void do_apply_theme (int themeIndex, int colorIndex, int sizeIndex)
}
}
int updating_ui;
BOOL theme_dirty;
static int updating_ui;
static BOOL theme_dirty;
static void enable_size_and_color_controls (HWND dialog, BOOL enable)
{
......
......@@ -116,7 +116,7 @@ void apply_drive_changes(void);
BOOL browse_for_unix_folder(HWND dialog, WCHAR *pszPath);
extern struct drive drives[26]; /* one for each drive letter */
BOOL gui_mode;
extern BOOL gui_mode;
/* Some basic utilities to make win32 suck less */
#define disable(id) EnableWindow(GetDlgItem(dialog, id), 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment