This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
qDebug() << "Krok: I7MessageBox::exec()"; | |
I7MessageBox msgBox; | |
msgBox.setCaption("Test kontrolki MessageBox") | |
.setMessage(QObject::tr("Czy chcesz zmienić rabaty dla wszystkich pozycji dokumentu sprzedaży?")) | |
.make4Buttons(QObject::tr("Tak"),QObject::tr("Nie"),QObject::tr("Dodaj pozycję"),QObject::tr("Zmień rabat")) | |
.setIconWarning(); | |
auto res = msgBox.exec(); | |
qDebug() << "Krok: AFTER I7MessageBox::exec()" << res; |