fix preprocessor conditional confusion. (G_OS_UNIX/G_OS_WIN32 stuff)
Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org> * gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion. (G_OS_UNIX/G_OS_WIN32 stuff)
This commit is contained in:

committed by
Manish Singh

parent
fc4da568a9
commit
6b80f394a5
@ -1,3 +1,8 @@
|
||||
Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
|
||||
(G_OS_UNIX/G_OS_WIN32 stuff)
|
||||
|
||||
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Do not interpret distant clicks as double-clicks (#116541,
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
|
||||
(G_OS_UNIX/G_OS_WIN32 stuff)
|
||||
|
||||
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Do not interpret distant clicks as double-clicks (#116541,
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
|
||||
(G_OS_UNIX/G_OS_WIN32 stuff)
|
||||
|
||||
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Do not interpret distant clicks as double-clicks (#116541,
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
|
||||
(G_OS_UNIX/G_OS_WIN32 stuff)
|
||||
|
||||
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Do not interpret distant clicks as double-clicks (#116541,
|
||||
|
@ -1,3 +1,8 @@
|
||||
Tue Dec 16 15:01:10 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkfilechooserwidget.c: fix preprocessor conditional confusion.
|
||||
(G_OS_UNIX/G_OS_WIN32 stuff)
|
||||
|
||||
Tue Dec 16 01:46:46 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Do not interpret distant clicks as double-clicks (#116541,
|
||||
|
@ -21,12 +21,13 @@
|
||||
#include "gtkfilechooserwidget.h"
|
||||
#include "gtkfilechooserdefault.h"
|
||||
#include "gtkfilechooserutils.h"
|
||||
#ifdef G_OS_UNIX
|
||||
#include "gtktypebuiltins.h"
|
||||
|
||||
#if defined (G_OS_UNIX)
|
||||
#include "gtkfilesystemunix.h"
|
||||
#else if defined G_OS_WIN32
|
||||
#elif defined (G_OS_WIN32)
|
||||
#include "gtkfilesystemwin32.h"
|
||||
#endif
|
||||
#include "gtktypebuiltins.h"
|
||||
|
||||
struct _GtkFileChooserWidgetPrivate
|
||||
{
|
||||
@ -135,9 +136,9 @@ gtk_file_chooser_widget_constructor (GType type,
|
||||
|
||||
if (!priv->file_system)
|
||||
{
|
||||
#if defined G_OS_UNIX
|
||||
#if defined (G_OS_UNIX)
|
||||
priv->file_system = gtk_file_system_unix_new ();
|
||||
#else if defined G_OS_WIN32
|
||||
#elif defined (G_OS_WIN32)
|
||||
priv->file_system = gtk_file_system_win32_new ();
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user