encfs/vendor/github.com/muflihun/easyloggingpp/samples/Qt/file-splitter-joiner/about.cpp
Valient Gough 5f0806c5cc Add "easylogging" from "https://github.com/muflihun/easyloggingpp@master"
git-vendor-name: easylogging
git-vendor-dir: vendor/github.com/muflihun/easyloggingpp
git-vendor-repository: https://github.com/muflihun/easyloggingpp
git-vendor-ref: master
2017-08-05 23:23:41 -07:00

21 lines
423 B
C++

#include "about.h"
#include "ui_about.h"
#include <QMessageBox>
#include "easylogging++.h"
About::About(QWidget *parent) :
QWidget(parent),
ui(new Ui::About) {
ui->setupUi(this);
ui->el_info->setText(QString("Easylogging++ v") + QString(el::VersionInfo::version().c_str()));
}
About::~About() {
delete ui;
}
void About::on_pushButton_clicked() {
QMessageBox aboutQt;
aboutQt.aboutQt(this);
}