mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-07 17:20:07 +00:00
gtk/gtkmain.c g_module_symbol takes a gpointer *, not just a gpointer.
2001-12-04 Manish Singh <yosh@gimp.org> * gtk/gtkmain.c * gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just a gpointer. * gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic correction to docs. * demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
This commit is contained in:
parent
57f508467e
commit
9605ec8a03
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
2001-12-04 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmain.c
|
||||
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
|
||||
a gpointer.
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
|
||||
correction to docs.
|
||||
|
||||
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
|
||||
|
||||
2001-12-04 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
|
||||
|
@ -1,3 +1,14 @@
|
||||
2001-12-04 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmain.c
|
||||
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
|
||||
a gpointer.
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
|
||||
correction to docs.
|
||||
|
||||
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
|
||||
|
||||
2001-12-04 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
|
||||
|
@ -1,3 +1,14 @@
|
||||
2001-12-04 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmain.c
|
||||
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
|
||||
a gpointer.
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
|
||||
correction to docs.
|
||||
|
||||
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
|
||||
|
||||
2001-12-04 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
|
||||
|
@ -1,3 +1,14 @@
|
||||
2001-12-04 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmain.c
|
||||
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
|
||||
a gpointer.
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
|
||||
correction to docs.
|
||||
|
||||
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
|
||||
|
||||
2001-12-04 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
|
||||
|
@ -1,3 +1,14 @@
|
||||
2001-12-04 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmain.c
|
||||
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
|
||||
a gpointer.
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
|
||||
correction to docs.
|
||||
|
||||
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
|
||||
|
||||
2001-12-04 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
|
||||
|
@ -1,3 +1,14 @@
|
||||
2001-12-04 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmain.c
|
||||
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
|
||||
a gpointer.
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
|
||||
correction to docs.
|
||||
|
||||
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
|
||||
|
||||
2001-12-04 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
|
||||
|
@ -1,3 +1,14 @@
|
||||
2001-12-04 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmain.c
|
||||
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
|
||||
a gpointer.
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
|
||||
correction to docs.
|
||||
|
||||
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
|
||||
|
||||
2001-12-04 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtktextbtree.c (gtk_text_btree_remove_tag_info): remove
|
||||
|
@ -68,7 +68,7 @@ do_item_factory (void)
|
||||
item_factory = gtk_item_factory_new (GTK_TYPE_MENU_BAR, "<main>", accel_group);
|
||||
g_object_set_data_full (G_OBJECT (window), "<main>",
|
||||
item_factory, (GDestroyNotify) g_object_unref);
|
||||
gtk_window_add_accel_group (window, accel_group);
|
||||
gtk_window_add_accel_group (GTK_WINDOW (window), accel_group);
|
||||
gtk_window_set_title (GTK_WINDOW (window), "Item Factory");
|
||||
gtk_container_set_border_width (GTK_CONTAINER (window), 0);
|
||||
gtk_item_factory_create_items (item_factory, nmenu_items, menu_items, NULL);
|
||||
|
@ -368,7 +368,7 @@ load_module (GSList *gtk_modules,
|
||||
{
|
||||
module = find_module (module_path, name);
|
||||
if (module &&
|
||||
g_module_symbol (module, "gtk_module_init", (gpointer*) &modinit_func) &&
|
||||
g_module_symbol (module, "gtk_module_init", (gpointer *) &modinit_func) &&
|
||||
modinit_func)
|
||||
{
|
||||
if (!g_slist_find (gtk_modules, modinit_func))
|
||||
|
@ -5288,7 +5288,7 @@ gtk_widget_get_composite_name (GtkWidget *widget)
|
||||
* scrolled_window->hscrollbar = gtk_hscrollbar_new (hadjustment);
|
||||
* gtk_widget_set_composite_name (scrolled_window->hscrollbar, "hscrollbar");
|
||||
* gtk_widget_pop_composite_child ();
|
||||
gtk_widget_set_parent (scrolled_window->hscrollbar,
|
||||
* gtk_widget_set_parent (scrolled_window->hscrollbar,
|
||||
* GTK_WIDGET (scrolled_window));
|
||||
* gtk_widget_ref (scrolled_window->hscrollbar);
|
||||
* </programlisting>
|
||||
|
@ -76,10 +76,10 @@ query_module (const char *dir, const char *name)
|
||||
}
|
||||
|
||||
if (module &&
|
||||
g_module_symbol (module, "im_module_list", (gpointer)&list) &&
|
||||
g_module_symbol (module, "im_module_init", (gpointer)&init) &&
|
||||
g_module_symbol (module, "im_module_exit", (gpointer)&exit) &&
|
||||
g_module_symbol (module, "im_module_create", (gpointer)&create))
|
||||
g_module_symbol (module, "im_module_list", (gpointer *) &list) &&
|
||||
g_module_symbol (module, "im_module_init", (gpointer *) &init) &&
|
||||
g_module_symbol (module, "im_module_exit", (gpointer *) &exit) &&
|
||||
g_module_symbol (module, "im_module_create", (gpointer *) &create))
|
||||
{
|
||||
const GtkIMContextInfo **contexts;
|
||||
guint n_contexts;
|
||||
|
Loading…
Reference in New Issue
Block a user