summaryrefslogtreecommitdiffstats
path: root/video.cpp
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2009-09-25 23:32:17 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2009-09-25 23:32:17 -0400
commit3bdcdf732d4b97b0bc781e954c7ae82bc9b1e91b (patch)
treecd270b6fd7bc6438d469dab4633451229acd69bf /video.cpp
parentFinished framework and added job stubs. (diff)
downloadAnyRip-3bdcdf732d4b97b0bc781e954c7ae82bc9b1e91b.tar.xz
AnyRip-3bdcdf732d4b97b0bc781e954c7ae82bc9b1e91b.zip
Display for video object.
Diffstat (limited to 'video.cpp')
-rw-r--r--video.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/video.cpp b/video.cpp
index a4240b9..44450d1 100644
--- a/video.cpp
+++ b/video.cpp
@@ -4,6 +4,7 @@
#include "encodemp4job.h"
#include "uploadjob.h"
#include "titleloadjob.h"
+#include "videogui.h"
#include <QDir>
@@ -102,3 +103,7 @@ QString Video::title() const
{
return m_title;
}
+VideoGui* Video::gui()
+{
+ return new VideoGui(this);
+}