diff options
author | Renato Filho <renato.filho@openbossa.org> | 2011-04-28 15:59:55 -0300 |
---|---|---|
committer | Renato Filho <renato.filho@openbossa.org> | 2011-04-28 17:43:01 -0300 |
commit | 011db01f65dd1515bac6e68becbbb0173c96a360 (patch) | |
tree | 30b91d0455d32871a745c8d50c06e52bc58e6973 | |
parent | 1cc2ccbcd8a58b1219b92d542253fd1a6f3d0913 (diff) | |
download | pyside-1.0.2.tar.gz pyside-1.0.2.tar.xz pyside-1.0.2.zip |
Fixed bug 728 to use the correct arguments on function call.1.0.2
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
Hugo Parente Lima <hugo.pl@gmail.com>
-rw-r--r-- | tests/QtGui/bug_728.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/QtGui/bug_728.py b/tests/QtGui/bug_728.py index f9a5c8b..b95e1b3 100644 --- a/tests/QtGui/bug_728.py +++ b/tests/QtGui/bug_728.py @@ -5,4 +5,4 @@ app = QApplication([]) QTimer.singleShot(200, app.quit) # This test for a dead lock in QFileDialog.getOpenFileNames, the test fail with a timeout if the dead lock exists. -QFileDialog.getOpenFileNames(None, "caption", QDir.homePath(), None, QFileDialog.DontUseNativeDialog) +QFileDialog.getOpenFileNames(None, "caption", QDir.homePath(), None, "", QFileDialog.DontUseNativeDialog) |