Fix up includes on Win32. (#311630, Kazuki Iwamoto)

2005-07-26  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkfilechooserdefault.c: Fix up includes on Win32.
	(#311630, Kazuki Iwamoto)
This commit is contained in:
Matthias Clasen 2005-07-26 18:43:27 +00:00 committed by Matthias Clasen
parent 4242628811
commit 98a1367afe
4 changed files with 19 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2005-07-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c: Fix up includes on Win32.
(#311630, Kazuki Iwamoto)
* gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to
the list of keysyms to ignore for composition, since
AltGr keys produce it in some keyboard layouts. (#307283)

View File

@ -1,5 +1,8 @@
2005-07-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c: Fix up includes on Win32.
(#311630, Kazuki Iwamoto)
* gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to
the list of keysyms to ignore for composition, since
AltGr keys produce it in some keyboard layouts. (#307283)

View File

@ -1,5 +1,8 @@
2005-07-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c: Fix up includes on Win32.
(#311630, Kazuki Iwamoto)
* gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to
the list of keysyms to ignore for composition, since
AltGr keys produce it in some keyboard layouts. (#307283)

View File

@ -85,7 +85,17 @@
#define PROFILE_FILE_CHOOSER
#ifdef PROFILE_FILE_CHOOSER
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef G_OS_WIN32
#include <io.h>
#endif
#ifndef F_OK
#define F_OK 0
#endif
#define PROFILE_INDENT 4
static int profile_indent;