summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJavier Fernandez <jfernandez@igalia.com>2013-03-20 07:17:37 +0000
committerMichael Meeks <michael.meeks@suse.com>2013-03-25 13:23:09 +0000
commitb7b49273bc835cae22ae60835d674b1c9fcb14e1 (patch)
tree1265cb2fadef573cdfd314a52bd839cf999eb94c /wizards
parent25d5457280bc2ebf4f339c4da8fe0ca2f7205ef0 (diff)
Init: fixed typo in the SystemDialog class.
Change-Id: I8ab25ca01eb68ad10e60b9209e8a2ee6b0eb3252
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/common/SystemDialog.py4
1 files changed, 2 insertions, 2 deletions
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());