summaryrefslogtreecommitdiffstats
path: root/titleloadjob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'titleloadjob.cpp')
-rw-r--r--titleloadjob.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/titleloadjob.cpp b/titleloadjob.cpp
index f54c9b2..d0c613c 100644
--- a/titleloadjob.cpp
+++ b/titleloadjob.cpp
@@ -1,5 +1,6 @@
#include "titleloadjob.h"
#include <QWidget>
+#include <QLabel>
TitleLoadJob::TitleLoadJob(Video *video, QString subtitlePath, QString posterPath) :
Job(video),
@@ -14,10 +15,11 @@ Video::Jobs TitleLoadJob::jobType() const
bool TitleLoadJob::executeJob()
{
//TODO: title load the whole thing
+ sleep(5);
return true;
}
QWidget* TitleLoadJob::gui()
{
//TODO: make a gui
- return new QWidget;
+ return new QLabel("Bet your ass this is title loading.");
}