mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 03:07:49 -05:00
22 lines
536 B
C++
22 lines
536 B
C++
#include "OpenRGBSoftwareInfoPage.h"
|
|
|
|
using namespace Ui;
|
|
|
|
OpenRGBSoftwareInfoPage::OpenRGBSoftwareInfoPage(QWidget *parent) :
|
|
QFrame(parent),
|
|
ui(new Ui::OpenRGBSoftwareInfoPageUi)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
ui->VersionValue->setText(VERSION_STRING);
|
|
ui->BuildDateValue->setText(BUILDDATE_STRING);
|
|
ui->GitCommitIDValue->setText(GIT_COMMIT_ID);
|
|
ui->GitCommitDateValue->setText(GIT_COMMIT_DATE);
|
|
ui->GitBranchValue->setText(GIT_BRANCH);
|
|
}
|
|
|
|
OpenRGBSoftwareInfoPage::~OpenRGBSoftwareInfoPage()
|
|
{
|
|
delete ui;
|
|
}
|