Fix building gmpc with vala 0.9.X
authorQball Cow <qball@sarine.nl>
Sun, 27 Jun 2010 09:43:27 +0000 (11:43 +0200)
committerQball Cow <qball@sarine.nl>
Sun, 27 Jun 2010 09:43:27 +0000 (11:43 +0200)
src/vala/gmpc-liststore-sort.vala

index cd5e728..7046c48 100644 (file)
@@ -63,9 +63,9 @@ namespace Gmpc {
                 if(source_v)
                 {
                     if(dest_v)
-                        this.move_before(source_iter, dest_iter);
+                        this.move_before(ref source_iter, dest_iter);
                     else
-                        this.move_before(source_iter, null);
+                        this.move_before(ref source_iter, null);
                 }
                 return true;
             }