hi,
I want use QMessageBox functionality to interact with user.
I have wrote this code:
QMessageBox msgBox;
msgBox.setText("Warning");
msgBox.setInformativeText("Do you want to delete your registration?");
msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Cancel);
msgBox.setDefaultButton(QMessageBox::Cancel);
msgBox.exec();
When the user press cancel button the application show him this message, but I have a strange behavior:
http://img826.imageshack.us/i/deletez.png/
I see only one button and I see the message box in the top left corner of the device
How can I solve this problems?
Thanks






