From 42d7f881d5d06b30365e03176b610412925d6431 Mon Sep 17 00:00:00 2001 From: Renato Filho Date: Thu, 28 Apr 2011 15:59:55 -0300 Subject: Fixed bug 728 to use the correct arguments on function call. Reviewer: Marcelo Lira Hugo Parente Lima --- tests/QtGui/bug_728.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/QtGui/bug_728.py b/tests/QtGui/bug_728.py index f9a5c8b1e..b95e1b3a6 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) -- cgit v1.2.3