Merge branch 'bugfix-version-info' into merge-task-and-verController

This commit is contained in:
semenov
2025-01-22 17:33:12 +03:00
17 changed files with 144 additions and 58 deletions

View File

@@ -13,13 +13,21 @@ public:
this->viewName = viewName;
this->createData = data;
this->size = size;
this->isChangeable = true;
this->author = "";
this->isChangeable = false;
}
StreamingVersionData(){};
~StreamingVersionData();
void fill(StreamingVersionData* data)
{
this->absolutePath = data->getAbsolutPath();
this->viewName = data->getViewName();
this->createData = data->getCreateData();
this->size = data->getSize();
this->isChangeable = data->getIsChangeable();
this->author = data->getAuthor();
}
QString getAbsolutPath() const
{
return absolutePath;