From 4eaa435417536b9ae380dec9894ad0af513ae6d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Fri, 20 Aug 2010 20:04:59 +0200 Subject: glib-2.0: Deprecate string.len () in favor of string.length --- vala/valaproperty.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vala/valaproperty.vala') diff --git a/vala/valaproperty.vala b/vala/valaproperty.vala index 7621099c7..f2024442a 100644 --- a/vala/valaproperty.vala +++ b/vala/valaproperty.vala @@ -250,7 +250,7 @@ public class Vala.Property : Symbol, Lockable { string i = name; - while (i.len () > 0) { + while (i.length > 0) { unichar c = i.get_char (); if (c == '_') { str.append_c ('-'); -- cgit v1.2.1