[Xfce4-commits] <postler:master> It is string.length, not len, apparently

Christian Dywan noreply at xfce.org
Tue Dec 7 19:54:01 CET 2010


Updating branch refs/heads/master
         to e54760d9fb00a7e98fc409c1ac652667301d4d36 (commit)
       from 7be548d6016cba01b76b31a024f2806914675e5f (commit)

commit e54760d9fb00a7e98fc409c1ac652667301d4d36
Author: Christian Dywan <christian at twotoasts.de>
Date:   Tue Dec 7 19:53:21 2010 +0100

    It is string.length, not len, apparently

 postler/postler-composer.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/postler/postler-composer.vala b/postler/postler-composer.vala
index 63c9225..87b12f1 100644
--- a/postler/postler-composer.vala
+++ b/postler/postler-composer.vala
@@ -342,7 +342,7 @@ public class Postler.Composer : Gtk.Window {
         completion.inline_selection = true;
         entry.set_completion (completion);
         entry.changed.connect ((editable) => {
-            long input_length = entry.text.len;
+            long input_length = entry.text.length;
             if (input_length < 3)
                 return;
             var model = entry.get_completion ().model as Gtk.ListStore;



More information about the Xfce4-commits mailing list