diff options
Diffstat (limited to 'debug_functions.cpp')
| -rw-r--r-- | debug_functions.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/debug_functions.cpp b/debug_functions.cpp index 7206885e..347e6205 100644 --- a/debug_functions.cpp +++ b/debug_functions.cpp @@ -13,3 +13,15 @@ void call_error(QString p_message) //msgBox->setWindowModality(Qt::NonModal); msgBox->show(); } + +void call_notice(QString p_message) +{ + QMessageBox *msgBox = new QMessageBox; + + msgBox->setText(p_message); + msgBox->setWindowTitle("Notice"); + + + //msgBox->setWindowModality(Qt::NonModal); + msgBox->show(); +} |
