[pitivi] pipeline: GESTimelinePipeline was renamed to GESPipeline in GES
- From: Thibault Saunier <tsaunier src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] pipeline: GESTimelinePipeline was renamed to GESPipeline in GES
- Date: Mon, 22 Jul 2013 01:50:45 +0000 (UTC)
commit 47f074777e0470df373232d35c4831e70e6efbc0
Author: Thibault Saunier <thibault saunier collabora com>
Date: Sun Jul 21 21:49:03 2013 -0400
pipeline: GESTimelinePipeline was renamed to GESPipeline in GES
pitivi/utils/pipeline.py | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/pitivi/utils/pipeline.py b/pitivi/utils/pipeline.py
index cf4909f..3494899 100644
--- a/pitivi/utils/pipeline.py
+++ b/pitivi/utils/pipeline.py
@@ -434,9 +434,9 @@ class SimplePipeline(Signallable, Loggable):
raise PipelineError("Couldn't get duration: Returned None")
-class Pipeline(GES.TimelinePipeline, SimplePipeline):
+class Pipeline(GES.Pipeline, SimplePipeline):
"""
- Helper to handle GES.TimelinePipeline through the SimplePipeline API
+ Helper to handle GES.Pipeline through the SimplePipeline API
and handle the Seeker properly
Signals:
@@ -459,7 +459,7 @@ class Pipeline(GES.TimelinePipeline, SimplePipeline):
}
def __init__(self, pipeline=None):
- GES.TimelinePipeline.__init__(self)
+ GES.Pipeline.__init__(self)
SimplePipeline.__init__(self, self, self)
self._seeker = Seeker()
@@ -470,7 +470,7 @@ class Pipeline(GES.TimelinePipeline, SimplePipeline):
return self._timeline.get_duration()
def add_timeline(self, timeline):
- if GES.TimelinePipeline.add_timeline(self, timeline):
+ if GES.Pipeline.add_timeline(self, timeline):
self._timeline = timeline
return True
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]