diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-03 11:57:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-03 12:01:10 +0100 |
commit | 97822e3cbc63d3bd110bc3c654b3fbb4d4d1904c (patch) | |
tree | 154b251359e151e1093e787b84feb45654ff66db /wizards | |
parent | 7163d64b90ac4d4259b1d0379cfca348dd30601c (diff) |
Wizards should look for templates in Template_internal, not Template_user
...as only the former reliably denotes the share/template tree where the
wizard templates are stored. (Presumably the latter defaulted to the former as
long as it wasn't explicitly set in the past, but is now always explicitly set
since 838b77f5f3d6d8fd98891e99a23ff78a6a357cb2 "Resolves: rhbz#1065807 use xdg
~/Templates for default Template location.")
Change-Id: I7d1ac47d821c778fe342865465d0505a94b824bf
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/ui/WizardDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/ui/WizardDialog.py b/wizards/com/sun/star/wizards/ui/WizardDialog.py index 6cf9bc55aad3..4e41fdf2a9e0 100644 --- a/wizards/com/sun/star/wizards/ui/WizardDialog.py +++ b/wizards/com/sun/star/wizards/ui/WizardDialog.py @@ -126,7 +126,7 @@ class WizardDialog(UnoDialog2): xPropertySet = \ self.xMSF.createInstance("com.sun.star.util.PathSettings") self.sTemplatePath = \ - xPropertySet.getPropertyValue("Template_user")[0] + xPropertySet.getPropertyValue("Template_internal")[0] self.sUserTemplatePath = \ xPropertySet.getPropertyValue("Template_writable") |