mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Add appropriate type casts for the gtk_window_set_screen() call.
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org> * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate type casts for the gtk_window_set_screen() call.
This commit is contained in:
parent
4bd1fa5ff3
commit
4ac3998efb
@ -1,3 +1,8 @@
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
type casts for the gtk_window_set_screen() call.
|
||||
|
||||
Sun Feb 8 01:44:06 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make popups
|
||||
|
@ -1,3 +1,8 @@
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
type casts for the gtk_window_set_screen() call.
|
||||
|
||||
Sun Feb 8 01:44:06 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make popups
|
||||
|
@ -1,3 +1,8 @@
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
type casts for the gtk_window_set_screen() call.
|
||||
|
||||
Sun Feb 8 01:44:06 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make popups
|
||||
|
@ -1,3 +1,8 @@
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
type casts for the gtk_window_set_screen() call.
|
||||
|
||||
Sun Feb 8 01:44:06 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make popups
|
||||
|
@ -1,3 +1,8 @@
|
||||
Sun Feb 8 01:28:02 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Add appropriate
|
||||
type casts for the gtk_window_set_screen() call.
|
||||
|
||||
Sun Feb 8 01:44:06 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Make popups
|
||||
|
@ -693,9 +693,9 @@ gtk_combo_box_set_popup_widget (GtkComboBox *combo_box,
|
||||
if (!combo_box->priv->popup_window)
|
||||
{
|
||||
combo_box->priv->popup_window = gtk_window_new (GTK_WINDOW_POPUP);
|
||||
gtk_window_set_screen (combo_box->priv->popup_window,
|
||||
gtk_widget_get_screen (combo_box));
|
||||
|
||||
gtk_window_set_screen (GTK_WINDOW (combo_box->priv->popup_window),
|
||||
gtk_widget_get_screen (GTK_WIDGET (combo_box)));
|
||||
|
||||
combo_box->priv->popup_frame = gtk_frame_new (NULL);
|
||||
gtk_frame_set_shadow_type (GTK_FRAME (combo_box->priv->popup_frame),
|
||||
GTK_SHADOW_NONE);
|
||||
|
Loading…
Reference in New Issue
Block a user