Browse Source

making sure default values always exist for recurring and notify

logicp 4 years ago
parent
commit
b35b481fd2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/generic_task.cpp

+ 2 - 0
src/generic_task.cpp

@@ -197,6 +197,8 @@ const TaskArguments&& GenericTask::getTaskArguments() { return std::move(m_argum
  */
 void GenericTask::setDefaultValues() {
   setArgument("header", TypeVariant{QString{"Generic Task"}});
+  setArgument("recurring", 0);
+  setArgument("notify", false);
 }
 
 /**