summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJay Painter <jpaint@src.gnome.org>1998-06-02 02:51:46 +0000
committerJay Painter <jpaint@src.gnome.org>1998-06-02 02:51:46 +0000
commit57967d9a98dfa72cc8d286511ae9279fb87d7968 (patch)
treea9d95ca006c12fd33f265df5ff49b3e70593bd70 /tests
parent88e84f52dde0b6e1d901d1f5ffc5378612f83269 (diff)
downloadgtk+-57967d9a98dfa72cc8d286511ae9279fb87d7968.tar.gz
Added function gtk_clist_swap to swap two rows in a clist; I also have
finally fixed pixmap clipping so pixmaps are always cliped to the row.
Diffstat (limited to 'tests')
-rw-r--r--tests/testgtk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testgtk.c b/tests/testgtk.c
index 586966cfed..f270e9b01b 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -2977,7 +2977,7 @@ add1000_clist (GtkWidget *widget, gpointer data)
pixmap = gdk_pixmap_create_from_xpm (GTK_CLIST (data)->clist_window,
&mask,
&GTK_WIDGET (data)->style->white,
- "test.xpm");
+ "3DRings.xpm");
for (i = 0; i < TESTGTK_CLIST_COLUMNS; i++)
{
@@ -2994,7 +2994,7 @@ add1000_clist (GtkWidget *widget, gpointer data)
{
sprintf (text[0], "Row %d", clist_rows++);
row = gtk_clist_append (GTK_CLIST (data), texts);
- gtk_clist_set_pixtext (GTK_CLIST (data), row, 3, "Testing", 5, pixmap, mask);
+ gtk_clist_set_pixtext (GTK_CLIST (data), row, 3, "Hello World", 5, pixmap, mask);
}
gtk_clist_thaw (GTK_CLIST (data));