diff --git a/src/qobs/obsresult.cpp b/src/qobs/obsresult.cpp index 7e02fc2..8a3d277 100644 --- a/src/qobs/obsresult.cpp +++ b/src/qobs/obsresult.cpp @@ -33,12 +33,12 @@ OBSResult::~OBSResult() QString OBSResult::getProject() const { - return project; + return status->getProject(); } void OBSResult::setProject(const QString &value) { - project = value; + status->setProject(value); } QString OBSResult::getRepository() const diff --git a/src/qobs/obsresult.h b/src/qobs/obsresult.h index 970e35b..69057fc 100644 --- a/src/qobs/obsresult.h +++ b/src/qobs/obsresult.h @@ -48,7 +48,6 @@ class OBSResult OBSStatus *getStatus() const; private: - QString project; QString repository; QString arch; QString code;