Add a missing cat. (#141070, Chris Sherlock)

2004-04-29  Matthias Clasen  <mclasen@redhat.com>

	* tests/testentrycompletion.c (main): Add a missing
	cat.  (#141070, Chris Sherlock)

	* gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
	variable.  (#141022, Chris Sherlock)

	* gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
	cast.  (#141013, Chris Sherlock)

	* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
	unused variable.  (#141011, Chris Sherlock)
This commit is contained in:
Matthias Clasen 2004-04-29 14:12:20 +00:00 committed by Matthias Clasen
parent f215db2b12
commit 3f571c18e4
9 changed files with 76 additions and 6 deletions

View File

@ -1,3 +1,17 @@
2004-04-29 Matthias Clasen <mclasen@redhat.com>
* tests/testentrycompletion.c (main): Add a missing
cat. (#141070, Chris Sherlock)
* gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
variable. (#141022, Chris Sherlock)
* gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
cast. (#141013, Chris Sherlock)
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
unused variable. (#141011, Chris Sherlock)
2004-04-29 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory

View File

@ -1,3 +1,17 @@
2004-04-29 Matthias Clasen <mclasen@redhat.com>
* tests/testentrycompletion.c (main): Add a missing
cat. (#141070, Chris Sherlock)
* gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
variable. (#141022, Chris Sherlock)
* gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
cast. (#141013, Chris Sherlock)
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
unused variable. (#141011, Chris Sherlock)
2004-04-29 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory

View File

@ -1,3 +1,17 @@
2004-04-29 Matthias Clasen <mclasen@redhat.com>
* tests/testentrycompletion.c (main): Add a missing
cat. (#141070, Chris Sherlock)
* gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
variable. (#141022, Chris Sherlock)
* gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
cast. (#141013, Chris Sherlock)
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
unused variable. (#141011, Chris Sherlock)
2004-04-29 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory

View File

@ -1,3 +1,17 @@
2004-04-29 Matthias Clasen <mclasen@redhat.com>
* tests/testentrycompletion.c (main): Add a missing
cat. (#141070, Chris Sherlock)
* gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
variable. (#141022, Chris Sherlock)
* gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
cast. (#141013, Chris Sherlock)
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
unused variable. (#141011, Chris Sherlock)
2004-04-29 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory

View File

@ -1,3 +1,17 @@
2004-04-29 Matthias Clasen <mclasen@redhat.com>
* tests/testentrycompletion.c (main): Add a missing
cat. (#141070, Chris Sherlock)
* gtk/gtkrc.c (gtk_rc_check_pixmap_dir): Remove unused
variable. (#141022, Chris Sherlock)
* gtk/gtkcombo.c (gtk_combo_popup_list): Add a missing
cast. (#141013, Chris Sherlock)
* gtk/gtkcellview.c (gtk_cell_view_cell_layout_clear): Remove
unused variable. (#141011, Chris Sherlock)
2004-04-29 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c (gdk_win32_gc_set_dashes): Plug memory

View File

@ -640,7 +640,6 @@ gtk_cell_view_cell_layout_add_attribute (GtkCellLayout *layout,
static void
gtk_cell_view_cell_layout_clear (GtkCellLayout *layout)
{
GList *i;
GtkCellView *cellview = GTK_CELL_VIEW (layout);
g_return_if_fail (GTK_IS_CELL_VIEW (cellview));

View File

@ -514,7 +514,7 @@ gtk_combo_get_pos (GtkCombo * combo, gint * x, gint * y, gint * height, gint * w
}
static void
gtk_combo_popup_list (GtkCombo * combo)
gtk_combo_popup_list (GtkCombo *combo)
{
GtkWidget *toplevel;
GtkList *list;
@ -556,7 +556,7 @@ gtk_combo_popup_list (GtkCombo * combo)
gtk_window_move (GTK_WINDOW (combo->popwin), x, y);
toplevel = gtk_widget_get_toplevel (combo);
toplevel = gtk_widget_get_toplevel (GTK_WIDGET (combo));
if (GTK_IS_WINDOW (toplevel))
{

View File

@ -2967,10 +2967,10 @@ gtk_rc_parse_bg_pixmap (GtkRcContext *context,
}
static gchar*
gtk_rc_check_pixmap_dir (const gchar *dir, const gchar *pixmap_file)
gtk_rc_check_pixmap_dir (const gchar *dir,
const gchar *pixmap_file)
{
gchar *buf;
gint fd;
buf = g_build_filename (dir, pixmap_file, NULL);

View File

@ -243,6 +243,7 @@ main (int argc, char *argv[])
gtk_container_set_border_width (GTK_CONTAINER (vbox), 5);
label = gtk_label_new (NULL);
gtk_label_set_markup (GTK_LABEL (label), "Completion demo, try writing <b>total</b> or <b>gnome</b> for example.");
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
@ -311,7 +312,7 @@ main (int argc, char *argv[])
g_object_unref (completion);
/* Create a tree model and use it as the completion model */
completion_model = gtk_list_store_new (1, G_TYPE_STRING);
completion_model = GTK_TREE_MODEL (gtk_list_store_new (1, G_TYPE_STRING));
gtk_entry_completion_set_model (completion, completion_model);
g_object_unref (completion_model);