forked from AuroraMiddleware/gtk
Miscellaneous portability fixes.
-Yosh
This commit is contained in:
parent
26c35927f7
commit
92610dafdb
@ -1,3 +1,7 @@
|
||||
Thu Jan 1 19:43:45 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Miscellaneous portability fixes.
|
||||
|
||||
Mon Dec 29 22:05:45 1997 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Jan 1 19:43:45 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Miscellaneous portability fixes.
|
||||
|
||||
Mon Dec 29 22:05:45 1997 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Jan 1 19:43:45 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Miscellaneous portability fixes.
|
||||
|
||||
Mon Dec 29 22:05:45 1997 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Jan 1 19:43:45 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Miscellaneous portability fixes.
|
||||
|
||||
Mon Dec 29 22:05:45 1997 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Jan 1 19:43:45 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Miscellaneous portability fixes.
|
||||
|
||||
Mon Dec 29 22:05:45 1997 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Jan 1 19:43:45 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Miscellaneous portability fixes.
|
||||
|
||||
Mon Dec 29 22:05:45 1997 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Jan 1 19:43:45 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Miscellaneous portability fixes.
|
||||
|
||||
Mon Dec 29 22:05:45 1997 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||
|
||||
* gdk/gdkgc.c (gdk_gc_copy): New function, used to copy the values
|
||||
|
@ -218,10 +218,10 @@ gdk_pixmap_seek_char (FILE *infile,
|
||||
gint
|
||||
gdk_pixmap_read_string (FILE *infile,
|
||||
gchar **buffer,
|
||||
int *buffer_size)
|
||||
guint *buffer_size)
|
||||
{
|
||||
gchar c;
|
||||
gint cnt = 0;
|
||||
guint cnt = 0;
|
||||
|
||||
if ((*buffer) == NULL)
|
||||
{
|
||||
|
@ -60,8 +60,8 @@ struct _GdkWindowPrivate
|
||||
guint8 resize_count;
|
||||
guint8 ref_count;
|
||||
guint8 window_type;
|
||||
guint8 destroyed : 2;
|
||||
guint8 dnd_drag_enabled : 1,
|
||||
guint destroyed : 2;
|
||||
guint dnd_drag_enabled : 1,
|
||||
dnd_drag_datashow : 1,
|
||||
dnd_drag_destructive_op : 1,
|
||||
dnd_drag_accepted : 1,
|
||||
|
@ -218,10 +218,10 @@ gdk_pixmap_seek_char (FILE *infile,
|
||||
gint
|
||||
gdk_pixmap_read_string (FILE *infile,
|
||||
gchar **buffer,
|
||||
int *buffer_size)
|
||||
guint *buffer_size)
|
||||
{
|
||||
gchar c;
|
||||
gint cnt = 0;
|
||||
guint cnt = 0;
|
||||
|
||||
if ((*buffer) == NULL)
|
||||
{
|
||||
|
@ -42,7 +42,7 @@ static GMemChunk *array_mem_chunk = NULL;
|
||||
|
||||
|
||||
GArray*
|
||||
g_array_new (zero_terminated)
|
||||
g_array_new (gint zero_terminated)
|
||||
{
|
||||
GRealArray *array;
|
||||
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include <signal.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/times.h>
|
||||
#include <sys/types.h>
|
||||
|
@ -43,16 +43,16 @@ struct _GtkEntry
|
||||
GdkWindow *text_area;
|
||||
gchar *text;
|
||||
|
||||
guint16 text_size;
|
||||
guint16 text_length;
|
||||
gint16 current_pos;
|
||||
gint16 selection_start_pos;
|
||||
gint16 selection_end_pos;
|
||||
gint16 scroll_offset;
|
||||
gboolean have_selection : 1;
|
||||
gboolean visible : 1;
|
||||
guint32 timer;
|
||||
GdkIC ic;
|
||||
guint16 text_size;
|
||||
guint16 text_length;
|
||||
gint16 current_pos;
|
||||
gint16 selection_start_pos;
|
||||
gint16 selection_end_pos;
|
||||
gint16 scroll_offset;
|
||||
guint have_selection : 1;
|
||||
guint visible : 1;
|
||||
guint32 timer;
|
||||
GdkIC ic;
|
||||
|
||||
gchar *clipboard_text;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user