After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 592914 - unused variable warning on property in gobject
unused variable warning on property in gobject
Status: RESOLVED DUPLICATE of bug 592166
Product: vala
Classification: Core
Component: Code Generator: GObject
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2009-08-24 15:18 UTC by Thijs Vermeir
Modified: 2009-08-24 15:37 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Thijs Vermeir 2009-08-24 15:18:46 UTC
The small vala application generated warnings with gcc, because it has a unused variable (boxed)

----
public class Foo : GLib.Object {
  bool _bar;
  public bool bar {
    get {return _bar;}
  }
}

void main () {
  var a = new Foo ();
}

----
static void foo_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec) {
	Foo * self;
	gpointer boxed;
	self = FOO (object);
	switch (property_id) {
		case FOO_BAR:
		g_value_set_boolean (value, foo_get_bar (self));
		break;
		default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
		break;
	}
}
Comment 1 Jürg Billeter 2009-08-24 15:37:18 UTC

*** This bug has been marked as a duplicate of bug 592166 ***