mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-23 12:41:50 +01:00
tests/gobject: Use G_VALUE_INIT
This commit is contained in:
parent
108480b7ba
commit
4a25d21bd0
@ -94,7 +94,7 @@ struct _TestAClass {
|
|||||||
static void
|
static void
|
||||||
test_a_foo (TestI *self)
|
test_a_foo (TestI *self)
|
||||||
{
|
{
|
||||||
GValue args[1] = { { 0, } };
|
GValue args[1] = { G_VALUE_INIT };
|
||||||
|
|
||||||
record ("TestA::foo");
|
record ("TestA::foo");
|
||||||
|
|
||||||
@ -179,7 +179,7 @@ struct _TestBClass {
|
|||||||
static void
|
static void
|
||||||
test_b_foo (TestI *self)
|
test_b_foo (TestI *self)
|
||||||
{
|
{
|
||||||
GValue args[1] = { { 0, } };
|
GValue args[1] = { G_VALUE_INIT };
|
||||||
|
|
||||||
record ("TestB::foo");
|
record ("TestB::foo");
|
||||||
|
|
||||||
@ -195,7 +195,7 @@ test_b_foo (TestI *self)
|
|||||||
static void
|
static void
|
||||||
test_b_bar (TestA *self)
|
test_b_bar (TestA *self)
|
||||||
{
|
{
|
||||||
GValue args[1] = { { 0, } };
|
GValue args[1] = { G_VALUE_INIT };
|
||||||
|
|
||||||
record ("TestB::bar");
|
record ("TestB::bar");
|
||||||
|
|
||||||
@ -267,7 +267,7 @@ struct _TestCClass {
|
|||||||
static void
|
static void
|
||||||
test_c_foo (TestI *self)
|
test_c_foo (TestI *self)
|
||||||
{
|
{
|
||||||
GValue args[1] = { { 0, } };
|
GValue args[1] = { G_VALUE_INIT };
|
||||||
|
|
||||||
record ("TestC::foo");
|
record ("TestC::foo");
|
||||||
|
|
||||||
@ -283,7 +283,7 @@ test_c_foo (TestI *self)
|
|||||||
static void
|
static void
|
||||||
test_c_bar (TestA *self)
|
test_c_bar (TestA *self)
|
||||||
{
|
{
|
||||||
GValue args[1] = { { 0, } };
|
GValue args[1] = { G_VALUE_INIT };
|
||||||
|
|
||||||
record ("TestC::bar");
|
record ("TestC::bar");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user