diff options
author | Tim Janik <timj@imendio.com> | 2005-12-22 15:10:05 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2005-12-22 15:10:05 +0000 |
commit | 75e6b53a78140092a500dac9c71e438111f1cc9b (patch) | |
tree | e1ae9e8976edf902c69f26923243b28d46589f5b /tests/Makefile.am | |
parent | fe0fb8966d0bdb58e1cd5fe41082922c433be3ca (diff) | |
download | gtk+-75e6b53a78140092a500dac9c71e438111f1cc9b.tar.gz |
derive GtkObject from GUnowned, so it initially has a floating reference
Thu Dec 22 16:01:27 2005 Tim Janik <timj@imendio.com>
* gtk/gtkobject.c: derive GtkObject from GUnowned,
so it initially has a floating reference count.
gtk_object_class_init(): installa floating flag handler with
libgobject, so for GtkObjects the flag is stored as GTK_FLOATING
in the ->flags member.
* tests/floatingtest.c: test floating flag uses.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index f963b1a6e2..580fe0bda3 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -25,9 +25,11 @@ if USE_X11 testsocket_programs = testsocket testsocket_child endif +TESTS = floatingtest noinst_PROGRAMS = \ autotestfilechooser \ + floatingtest \ simple \ testaccel \ testcairo \ @@ -77,6 +79,7 @@ noinst_PROGRAMS = \ autotestfilechooser_DEPENDENCIES = $(TEST_DEPS) simple_DEPENDENCIES = $(TEST_DEPS) +floatingtest_DEPENDENCIES = $(TEST_DEPS) testicontheme_DEPENDENCIES = $(TEST_DEPS) testiconview_DEPENDENCIES = $(TEST_DEPS) testaccel_DEPENDENCIES = $(TEST_DEPS) @@ -118,7 +121,7 @@ testmerge_DEPENDENCIES = $(TEST_DEPS) testactions_DEPENDENCIES = $(TEST_DEPS) autotestfilechooser_LDADD = $(LDADDS) -simple_LDADD = $(LDADDS) +floatingtest_LDADD = $(LDADDS) testaccel_LDADD = $(LDADDS) testcairo_LDADD = $(LDADDS) testcalendar_LDADD = $(LDADDS) |