Nicolas Winkler 5 lat temu
rodzic
commit
9238fd1ead
2 zmienionych plików z 13 dodań i 0 usunięć
  1. 5 0
      Almond.cpp
  2. 8 0
      BackgroundTask.cpp

+ 5 - 0
Almond.cpp

@@ -37,6 +37,11 @@ void Almond::submitBackgroundTask(BackgroundTask* task)
 }
 
 
+void Almond::backgroundTaskFinished(void)
+{
+}
+
+
 void Almond::on_zoom_out_clicked()
 {
     mw->zoom(2);

+ 8 - 0
BackgroundTask.cpp

@@ -4,3 +4,11 @@ BackgroundTask::BackgroundTask(QRunnable* q)
 {
 
 }
+
+
+QRunnable* BackgroundTask::getRunnable(void)
+{
+    return nullptr;
+}
+
+