Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/recorded.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-10-31 20:16:42 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-10-31 20:16:42 (GMT)
commitd04a59cf1402e245a651c617ff740f57827aabae (patch)
tree4493c0db131414c7811a618ed5084dd852831394 /recorded.py
parent18f5cc956b31e94dc29c526c5ab2d8946a481102 (diff)
untested final refactoring
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@790 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'recorded.py')
-rw-r--r--recorded.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/recorded.py b/recorded.py
index 0346e9a..05d8edf 100644
--- a/recorded.py
+++ b/recorded.py
@@ -107,7 +107,7 @@ class Recorded:
return thumbPixbuf
else:
if (self.datastoreOb == None):
- self.ca.m.loadMediaFromDatastore( self )
+ self.datastoreOb = serialize.getMediaFromDatastore( self )
if (self.datastoreOb == None):
print("RecordActivity error -- unable to get datastore object in getThumbPixbuf")
return None
@@ -125,7 +125,7 @@ class Recorded:
return thumbFilepath
else:
if (self.datastoreOb == None):
- self.ca.m.loadMediaFromDatastore( self )
+ self.datastoreOb = serialize.getMediaFromDatastore( self )
if (self.datastoreOb == None):
print("RecordActivity error -- unable to get datastore object in getThumbPixbuf")
return None
@@ -200,7 +200,7 @@ class Recorded:
#first, get the datastoreObject and hold the reference in this Recorded instance
if (self.datastoreOb == None):
#todo: return t or f
- self.ca.m.loadMediaFromDatastore( self )
+ self.datastoreOb = serialize.getMediaFromDatastore( self )
if (self.datastoreOb == None):
print("RecordActivity error -- unable to get datastore object in getMediaFilepath")
return None