Display legal notice on screen center

This commit is contained in:
Christophe Dumez
2011-01-22 19:32:44 +00:00
parent a5aa1a5cab
commit 0dc4b27cb6
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
- BUGFIX: Avoid main window flashing on startup (closes #703984) - BUGFIX: Avoid main window flashing on startup (closes #703984)
- BUGFIX: Improved hostname resolution code - BUGFIX: Improved hostname resolution code
- BUGFIX: Dropped dependency on libboost-thread - BUGFIX: Dropped dependency on libboost-thread
- BUGFIX: Display legal notice on screen center
- I18N: More dialog buttons are now translated (by Vladimir Golovnev) - I18N: More dialog buttons are now translated (by Vladimir Golovnev)
- I18N: Fix translation of size units (by Vladimir Golovnev) - I18N: Fix translation of size units (by Vladimir Golovnev)

View File

@@ -106,6 +106,8 @@ public:
msgBox.setWindowTitle(tr("Legal notice")); msgBox.setWindowTitle(tr("Legal notice"));
msgBox.addButton(tr("Cancel"), QMessageBox::RejectRole); msgBox.addButton(tr("Cancel"), QMessageBox::RejectRole);
QAbstractButton *agree_button = msgBox.addButton(tr("I Agree"), QMessageBox::AcceptRole); QAbstractButton *agree_button = msgBox.addButton(tr("I Agree"), QMessageBox::AcceptRole);
msgBox.show(); // Need to be shown or to moveToCenter does not work
msgBox.move(misc::screenCenter(&msgBox));
msgBox.exec(); msgBox.exec();
if(msgBox.clickedButton() == agree_button) { if(msgBox.clickedButton() == agree_button) {
// Save the answer // Save the answer