MCPcopy Create free account
hub / github.com/SeaEpoch/MouseClick / MessageBox

Method MessageBox

src/modules/messagebox.cpp:5–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <QFile>
4
5MessageBox::MessageBox(QWidget* parent)
6 : QMessageBox{parent}
7{
8 QFile style_file(":/qss/modules/messagebox.qss");
9
10 if (style_file.open(QIODevice::ReadOnly | QIODevice::Text)) {
11 setStyleSheet(QString::fromUtf8(style_file.readAll()));
12 }
13}
14
15MessageBox::~MessageBox() {}
16

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected