Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Fix about dialog on Qt 5 #6124
Conversation
mdboom
added the
needs_review
label
Mar 7, 2016
QuLogic
and 1 other
commented on an outdated diff
Mar 7, 2016
examples/user_interfaces/embedding_in_qt5.py
| @@ -117,7 +117,7 @@ def closeEvent(self, ce): | ||
| self.fileQuit() | ||
| def about(self): | ||
| - QtGui.QMessageBox.about(self, "About", | ||
| + QtWidgets.QMessageBox.about(self, "About", | ||
| """embedding_in_qt5.py example |
estan
Contributor
|
tacaswell
added a commit
that referenced
this pull request
Mar 7, 2016
|
|
tacaswell |
6ea5e35
|
tacaswell
merged commit 6ea5e35
into matplotlib:master
Mar 7, 2016
tacaswell
removed the
needs_review
label
Mar 7, 2016
|
|
tacaswell
added a commit
that referenced
this pull request
Mar 7, 2016
|
|
tacaswell |
20db6a0
|
|
backported to v1.5.1-doc as 20db6a0 |
QuLogic
added this to the
1.5.2 (Critical bug fix release)
milestone
Mar 7, 2016
bearstrong
added a commit
to bearstrong/matplotlib
that referenced
this pull request
Apr 1, 2016
|
|
tacaswell + bearstrong |
fbb9110
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
estan commentedMar 7, 2016
QMessageBox is in QtWidgets, not QtGui.