summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-13 11:13:46 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-13 11:13:46 +0000
commit78fc1ddbb63e56dd4ff6092e83ed1338c9ded708 (patch)
tree18bbb08b1fd6738ae640527536c6f920338092d3 /wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java
parentc72d2aa25e1d7af32aa37c1e8b1a9fc0602615d7 (diff)
INTEGRATION: CWS pathoptions01 (1.7.30); FILE MERGED
2006/06/29 14:12:16 tv 1.7.30.1: #i34105# Paths are now being retrieved using the new PathSettings service
Diffstat (limited to 'wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java')
-rw-r--r--wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java
index 44402019f79e..e1cdecd66ca3 100644
--- a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java
+++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.java
@@ -300,8 +300,8 @@ public class FaxWizardDialogImpl extends FaxWizardDialog {
private void initializePaths() {
try {
- sTemplatePath = FileAccess.getOfficePath(xMSF, "Template", "share");
- sUserTemplatePath = FileAccess.getOfficePath(xMSF, "Template", "user");
+ sTemplatePath = FileAccess.getOfficePath(xMSF, "Template", "share", "/wizard");
+ sUserTemplatePath = FileAccess.getOfficePath(xMSF, "Template", "user", "");
sBitmapPath = FileAccess.combinePaths(xMSF, sTemplatePath, "/wizard/bitmap");
} catch (NoValidPathException e) {
e.printStackTrace();
@@ -312,7 +312,7 @@ public class FaxWizardDialogImpl extends FaxWizardDialog {
try {
String sFaxSubPath = "/wizard/fax";
sFaxPath = FileAccess.combinePaths(xMSF, sTemplatePath, sFaxSubPath);
- sWorkPath = FileAccess.getOfficePath(xMSF, "Work", "");
+ sWorkPath = FileAccess.getOfficePath(xMSF, "Work", "", "");
BusinessFiles = FileAccess.getFolderTitles(xMSF, "bus", sFaxPath);
PrivateFiles = FileAccess.getFolderTitles(xMSF, "pri", sFaxPath);