From b7b49273bc835cae22ae60835d674b1c9fcb14e1 Mon Sep 17 00:00:00 2001 From: Javier Fernandez Date: Wed, 20 Mar 2013 07:17:37 +0000 Subject: Init: fixed typo in the SystemDialog class. Change-Id: I8ab25ca01eb68ad10e60b9209e8a2ee6b0eb3252 --- wizards/com/sun/star/wizards/common/SystemDialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wizards') diff --git a/wizards/com/sun/star/wizards/common/SystemDialog.py b/wizards/com/sun/star/wizards/common/SystemDialog.py index ab9b463f2106..cf640ff6cbed 100644 --- a/wizards/com/sun/star/wizards/common/SystemDialog.py +++ b/wizards/com/sun/star/wizards/common/SystemDialog.py @@ -91,8 +91,8 @@ class SystemDialog(object): def callFolderDialog(self, title, description, displayDir): try: - self.systemDialog.setDisplayDirectoryxPropertyValue( - subst(displayDir)) + self.systemDialog.setDisplayDirectory( + self.subst(displayDir)) except IllegalArgumentException as iae: traceback.print_exc() raise AttributeError(iae.getMessage()); -- cgit