mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2025-07-08 21:20:13 +02:00
15 lines
273 B
C
15 lines
273 B
C
#pragma once
|
|
|
|
#include <QMessageBox>
|
|
|
|
void notifyExtractionResult(bool result)
|
|
{
|
|
if (result)
|
|
{
|
|
QMessageBox::information(Q_NULLPTR, "NDSFactory", "Extraction completed!");
|
|
}
|
|
else
|
|
{
|
|
QMessageBox::critical(Q_NULLPTR, "NDSFactory", "Error during the extraction!");
|
|
}
|
|
} |