8000 Fix about dialog on Qt 5 · matplotlib/matplotlib@f3c475c · GitHub
[go: up one dir, main page]

Skip to content

Commit f3c475c

Browse files
committed
Fix about dialog on Qt 5
QMessageBox is in QtWidgets, not QtGui.
1 parent 7df8f0d commit f3c475c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/user_interfaces/embedding_in_qt5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def closeEvent(self, ce):
117117
self.fileQuit()
118118

119119
def about(self):
120-
QtGui.QMessageBox.about(self, "About",
120+
QtWidgets.QMessageBox.about(self, "About",
121121
"""embedding_in_qt5.py example
122122
Copyright 2005 Florent Rougon, 2006 Darren Dale, 2015 Jens H Nielsen
123123

0 commit comments

Comments
 (0)
0