mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-15 14:50:06 +00:00
Bug 559619 – invisible-char default cannot be tested
2008-11-12 Christian Dywan <christian@imendio.com> Bug 559619 – invisible-char default cannot be tested * gtk/tests/defaultvalue.c (test_type): Skip invisible-char when testing svn path=/trunk/; revision=21786
This commit is contained in:
parent
7cf03f2fd2
commit
ba9c358b53
@ -1,3 +1,10 @@
|
|||||||
|
2008-11-12 Christian Dywan <christian@imendio.com>
|
||||||
|
|
||||||
|
Bug 559619 – invisible-char default cannot be tested
|
||||||
|
|
||||||
|
* gtk/tests/defaultvalue.c (test_type):
|
||||||
|
Skip invisible-char when testing
|
||||||
|
|
||||||
2008-11-12 Richard Hult <richard@imendio.com>
|
2008-11-12 Richard Hult <richard@imendio.com>
|
||||||
|
|
||||||
* gtk/gtkdnd-quartz.c: (gtk_drag_set_icon_pixmap): Implement,
|
* gtk/gtkdnd-quartz.c: (gtk_drag_set_icon_pixmap): Implement,
|
||||||
|
@ -168,6 +168,11 @@ test_type (gconstpointer data)
|
|||||||
strcmp (pspec->name, "cancel-button") == 0))
|
strcmp (pspec->name, "cancel-button") == 0))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
/* Default invisible char is determined at runtime */
|
||||||
|
if (g_type_is_a (type, GTK_TYPE_ENTRY) &&
|
||||||
|
strcmp (pspec->name, "invisible-char") == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
/* Gets set to the cwd */
|
/* Gets set to the cwd */
|
||||||
if (g_type_is_a (type, GTK_TYPE_FILE_SELECTION) &&
|
if (g_type_is_a (type, GTK_TYPE_FILE_SELECTION) &&
|
||||||
strcmp (pspec->name, "filename") == 0)
|
strcmp (pspec->name, "filename") == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user