core: Better name for continuation field
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Tue, 12 Jan 2010 16:13:21 +0000 (18:13 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Tue, 12 Jan 2010 16:13:21 +0000 (18:13 +0200)
src/rygel/rygel-live-response.vala

index bd447ee..b83f750 100644 (file)
@@ -38,7 +38,7 @@ internal class Rygel.LiveResponse : Rygel.HTTPResponse {
 
     private HTTPSeek time_range;
 
-    private SourceFunc continuation;
+    private SourceFunc run_continue;
 
     public LiveResponse (Soup.Server  server,
                          Soup.Message msg,
@@ -62,7 +62,7 @@ internal class Rygel.LiveResponse : Rygel.HTTPResponse {
             this.pipeline.set_state (State.PLAYING);
         }
 
-        this.continuation = run.callback;
+        this.run_continue = run.callback;
 
         yield;
     }
@@ -76,7 +76,7 @@ internal class Rygel.LiveResponse : Rygel.HTTPResponse {
 
         base.end (aborted, status);
 
-        this.continuation ();
+        this.run_continue ();
     }
 
     private void prepare_pipeline (string name,