summaryrefslogtreecommitdiff
path: root/src/YalpClients/EflClient/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/YalpClients/EflClient/client.py')
-rwxr-xr-xsrc/YalpClients/EflClient/client.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/YalpClients/EflClient/client.py b/src/YalpClients/EflClient/client.py
index 073e6e2..86e3232 100755
--- a/src/YalpClients/EflClient/client.py
+++ b/src/YalpClients/EflClient/client.py
@@ -5,6 +5,7 @@ from omniORB import CORBA
import YalpInterfaces, CosNaming, YalpInterfaces__POA
import medialist
import media
+import playlist
class Corba(object):
def __init__(self, win, c):
@@ -36,9 +37,11 @@ class Corba(object):
mlist.append (YalpInterfaces.VIDEO)
mlist.append (YalpInterfaces.SOUND)
deps = self.blubb.search(searchentry, mlist)
- m = medialist.Medias(self.win, self.c)
+ m = medialist.Medialist(self.win, self.c)
+ video = playlist.Selection(self.win, self.c)
+
print deps[0]
for dep in deps[0]:
- current = media.Media(dep, self.blubb, self.win, self.c)
+ current = media.Media(dep, video, self.blubb, self.win, self.c)
m.add_media(current)