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