Imported Upstream version 0.13.2+dsfg1
This commit is contained in:
commit
fb3990e9e5
2036 changed files with 287360 additions and 0 deletions
25
obs/window-license-agreement.cpp
Normal file
25
obs/window-license-agreement.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#include <string>
|
||||
#include <util/util.hpp>
|
||||
#include <util/platform.h>
|
||||
#include <platform.hpp>
|
||||
#include "window-license-agreement.hpp"
|
||||
#include "qt-wrappers.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
OBSLicenseAgreement::OBSLicenseAgreement(QWidget *parent)
|
||||
: QDialog (parent),
|
||||
ui (new Ui::OBSLicenseAgreement)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
string path;
|
||||
if (!GetDataFilePath("license/gplv2.txt", path))
|
||||
throw "Could not find license file";
|
||||
|
||||
BPtr<char> licenseText = os_quick_read_utf8_file(path.c_str());
|
||||
if (!licenseText || !*licenseText || strlen(licenseText) < 1000)
|
||||
throw "Invalid license file data";
|
||||
|
||||
ui->license->setPlainText(QT_UTF8(licenseText));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue