diff options
Diffstat (limited to 'wizards/com')
-rw-r--r-- | wizards/com/sun/star/wizards/web/WebWizardDialogResources.java | 3 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/web/data/CGSettings.java | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java b/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java index ae0d1fa333f9..f93244672ccc 100644 --- a/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java +++ b/wizards/com/sun/star/wizards/web/WebWizardDialogResources.java @@ -11,6 +11,7 @@ public class WebWizardDialogResources extends Resource { String resSessionName; String resSizeTemplate; + String resSpecifyNewFileLocation; String resCreatedTemplate; String resUpdatedTemplate; String resSlides; @@ -320,7 +321,7 @@ public class WebWizardDialogResources extends Resource { resLocalTargetCouldNotCreate = getResText(RID_WEBWIZARDDIALOG_START + 149); resLocalTargetCreate = getResText(RID_WEBWIZARDDIALOG_START + 150); resSizeTemplate = getResText(RID_WEBWIZARDDIALOG_START + 151); - + resSpecifyNewFileLocation = getResText(RID_WEBWIZARDDIALOG_START + 152); resClose = getResText(RID_COMMON_START + 17); resCancel = getResText(RID_COMMON_START + 11); diff --git a/wizards/com/sun/star/wizards/web/data/CGSettings.java b/wizards/com/sun/star/wizards/web/data/CGSettings.java index 324ff0441a24..880103ce55f5 100644 --- a/wizards/com/sun/star/wizards/web/data/CGSettings.java +++ b/wizards/com/sun/star/wizards/web/data/CGSettings.java @@ -68,7 +68,10 @@ public class CGSettings extends ConfigGroup { public CGSettings(XMultiServiceFactory xmsf_, String[] resources_ , Object document) { xmsf = xmsf_; try { - soTemplateDir = FileAccess.getOfficePath(xmsf, "Template","share"); + soTemplateDir = FileAccess.getOfficePath(xmsf, "Config",""); + + +// soTemplateDir = FileAccess.getOfficePath(xmsf, "Template","share"); soGalleryDir = FileAccess.getOfficePath(xmsf,"Gallery","share"); root = this; formatter = new Formatter(xmsf, document ); |