Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/uLab/xrdp-proprietary/blame/commit/3cb0bc7ae8a638c22316135ca0ddbaeace2275de/vrplayer/dlgabout.cpp You should set ROOT_URL correctly, otherwise the web may not work correctly.
xrdp-proprietary/vrplayer/dlgabout.cpp

21 lines
313 B

#include "dlgabout.h"
#include "ui_dlgabout.h"
DlgAbout::DlgAbout(QWidget *parent) :
QDialog(parent),
ui(new Ui::DlgAbout)
{
ui->setupUi(this);
connect(ui->okButton, SIGNAL(clicked()), this, SLOT(onOk()));
}
DlgAbout::~DlgAbout()
{
delete ui;
}
void DlgAbout::onOk()
{
this->done(0);
}