mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Removal of inlines, and updated ChangeLog. -Jay
This commit is contained in:
parent
8eb36ebbd5
commit
621e1dd4c2
@ -1,3 +1,9 @@
|
||||
Fri Jay 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
||||
* reverted glibconfig.h and glib.h files back to the
|
||||
way they were before my ugly hack
|
||||
* gtk/gtkclist.c:
|
||||
* glib/gscanner.c: removed inlines from clist and gscanner
|
||||
|
||||
Fri Jan 2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
|
||||
|
||||
* Several portability fixes from Michael Callahan
|
||||
|
@ -1,3 +1,9 @@
|
||||
Fri Jay 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
||||
* reverted glibconfig.h and glib.h files back to the
|
||||
way they were before my ugly hack
|
||||
* gtk/gtkclist.c:
|
||||
* glib/gscanner.c: removed inlines from clist and gscanner
|
||||
|
||||
Fri Jan 2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
|
||||
|
||||
* Several portability fixes from Michael Callahan
|
||||
|
@ -1,3 +1,9 @@
|
||||
Fri Jay 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
||||
* reverted glibconfig.h and glib.h files back to the
|
||||
way they were before my ugly hack
|
||||
* gtk/gtkclist.c:
|
||||
* glib/gscanner.c: removed inlines from clist and gscanner
|
||||
|
||||
Fri Jan 2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
|
||||
|
||||
* Several portability fixes from Michael Callahan
|
||||
|
@ -1,3 +1,9 @@
|
||||
Fri Jay 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
||||
* reverted glibconfig.h and glib.h files back to the
|
||||
way they were before my ugly hack
|
||||
* gtk/gtkclist.c:
|
||||
* glib/gscanner.c: removed inlines from clist and gscanner
|
||||
|
||||
Fri Jan 2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
|
||||
|
||||
* Several portability fixes from Michael Callahan
|
||||
|
@ -1,3 +1,9 @@
|
||||
Fri Jay 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
||||
* reverted glibconfig.h and glib.h files back to the
|
||||
way they were before my ugly hack
|
||||
* gtk/gtkclist.c:
|
||||
* glib/gscanner.c: removed inlines from clist and gscanner
|
||||
|
||||
Fri Jan 2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
|
||||
|
||||
* Several portability fixes from Michael Callahan
|
||||
|
@ -1,3 +1,9 @@
|
||||
Fri Jay 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
||||
* reverted glibconfig.h and glib.h files back to the
|
||||
way they were before my ugly hack
|
||||
* gtk/gtkclist.c:
|
||||
* glib/gscanner.c: removed inlines from clist and gscanner
|
||||
|
||||
Fri Jan 2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
|
||||
|
||||
* Several portability fixes from Michael Callahan
|
||||
|
@ -1,3 +1,9 @@
|
||||
Fri Jay 2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
|
||||
* reverted glibconfig.h and glib.h files back to the
|
||||
way they were before my ugly hack
|
||||
* gtk/gtkclist.c:
|
||||
* glib/gscanner.c: removed inlines from clist and gscanner
|
||||
|
||||
Fri Jan 2 23:55:24 CST 1998 Shawn T. Amundson <amundson@gimp.org>
|
||||
|
||||
* Several portability fixes from Michael Callahan
|
||||
|
@ -110,8 +110,7 @@ static void g_scanner_get_token_i (GScanner *scanner,
|
||||
static void g_scanner_free_value (GTokenType *token_p,
|
||||
GValue *value_p);
|
||||
|
||||
static __inline__
|
||||
gint g_scanner_char_2_num (guchar c,
|
||||
static gint g_scanner_char_2_num (guchar c,
|
||||
guchar base);
|
||||
static guchar g_scanner_peek_next_char(GScanner *scanner);
|
||||
static guchar g_scanner_get_char (GScanner *scanner,
|
||||
|
@ -50,7 +50,7 @@
|
||||
|
||||
/* returns the column index from a x pixel location in the
|
||||
* context of the clist's hoffset */
|
||||
static inline gint
|
||||
static gint
|
||||
COLUMN_FROM_XPIXEL (GtkCList * clist,
|
||||
gint x)
|
||||
{
|
||||
@ -518,7 +518,7 @@ gtk_clist_set_column_title (GtkCList * clist,
|
||||
gchar * title)
|
||||
{
|
||||
GtkWidget *old_widget;
|
||||
GtkWidget *alignment;
|
||||
GtkWidget *alignment = NULL;
|
||||
GtkWidget *label;
|
||||
|
||||
g_return_if_fail (clist != NULL);
|
||||
@ -553,9 +553,6 @@ gtk_clist_set_column_title (GtkCList * clist,
|
||||
case GTK_JUSTIFY_FILL:
|
||||
alignment = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (alignment)
|
||||
|
Loading…
Reference in New Issue
Block a user