mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix bug with missing default values
This commit is contained in:
parent
e82d4d6598
commit
c838e16c04
@ -10,13 +10,13 @@ namespace model
|
|||||||
namespace table
|
namespace table
|
||||||
{
|
{
|
||||||
PendingTask::PendingTask()
|
PendingTask::PendingTask()
|
||||||
: mUserId(0), mHederaId(0), mTaskTypeId(TASK_TYPE_NONE)
|
: mUserId(0), mHederaId(0), mTaskTypeId(TASK_TYPE_NONE), mChildPendingTaskId(0), mParentPendingTaskId(0)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
PendingTask::PendingTask(int userId, std::string serializedProtoRequest, TaskType type)
|
PendingTask::PendingTask(int userId, std::string serializedProtoRequest, TaskType type)
|
||||||
: mUserId(userId), mHederaId(0), mRequest((const unsigned char*)serializedProtoRequest.data(), serializedProtoRequest.size()),
|
: mUserId(userId), mHederaId(0), mRequest((const unsigned char*)serializedProtoRequest.data(), serializedProtoRequest.size()),
|
||||||
mTaskTypeId(TASK_TYPE_NONE)
|
mTaskTypeId(TASK_TYPE_NONE), mChildPendingTaskId(0), mParentPendingTaskId(0)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user