Files
flameshot/infowindow.cpp
2017-05-10 22:14:05 +02:00

11 lines
238 B
C++

#include "infowindow.h"
#include <QIcon>
InfoWindow::InfoWindow(QWidget *parent) : QWidget(parent) {
setAttribute(Qt::WA_DeleteOnClose);
setWindowIcon(QIcon(":img/flameshot.svg"));
setWindowTitle(tr("About"));
show();
}