forked from AuroraMiddleware/gtk
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:
parent
4242628811
commit
98a1367afe
@ -1,5 +1,8 @@
|
|||||||
2005-07-26 Matthias Clasen <mclasen@redhat.com>
|
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
|
* gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to
|
||||||
the list of keysyms to ignore for composition, since
|
the list of keysyms to ignore for composition, since
|
||||||
AltGr keys produce it in some keyboard layouts. (#307283)
|
AltGr keys produce it in some keyboard layouts. (#307283)
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2005-07-26 Matthias Clasen <mclasen@redhat.com>
|
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
|
* gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to
|
||||||
the list of keysyms to ignore for composition, since
|
the list of keysyms to ignore for composition, since
|
||||||
AltGr keys produce it in some keyboard layouts. (#307283)
|
AltGr keys produce it in some keyboard layouts. (#307283)
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2005-07-26 Matthias Clasen <mclasen@redhat.com>
|
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
|
* gtk/gtkimcontextsimple.c: Add ISO_Level3_Shift to
|
||||||
the list of keysyms to ignore for composition, since
|
the list of keysyms to ignore for composition, since
|
||||||
AltGr keys produce it in some keyboard layouts. (#307283)
|
AltGr keys produce it in some keyboard layouts. (#307283)
|
||||||
|
@ -85,7 +85,17 @@
|
|||||||
|
|
||||||
#define PROFILE_FILE_CHOOSER
|
#define PROFILE_FILE_CHOOSER
|
||||||
#ifdef PROFILE_FILE_CHOOSER
|
#ifdef PROFILE_FILE_CHOOSER
|
||||||
|
|
||||||
|
#ifdef HAVE_UNISTD_H
|
||||||
#include <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
|
#define PROFILE_INDENT 4
|
||||||
static int profile_indent;
|
static int profile_indent;
|
||||||
|
Loading…
Reference in New Issue
Block a user