MCPcopy Create free account
hub / github.com/Tencent/libpag / showMessage

Method showMessage

viewer/src/platform/win/PluginInstaller.cpp:67–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void PluginInstaller::showMessage(const QString& title, const QString& message, bool isWarning) {
68 QMessageBox msgBox;
69 msgBox.setWindowTitle(title);
70 msgBox.setText(message);
71 msgBox.setIcon(isWarning ? QMessageBox::Warning : QMessageBox::Information);
72 msgBox.setStandardButtons(QMessageBox::Ok);
73 msgBox.exec();
74}
75
76QStringList PluginInstaller::getAeInstallPaths() {
77 QStringList paths;

Callers

nothing calls this directly

Calls 2

execMethod · 0.80
setTextMethod · 0.45

Tested by

no test coverage detected