diff options
author | Ocke.Janssen <Ocke.Janssen@oracle.com> | 2011-01-20 16:36:49 +0100 |
---|---|---|
committer | Ocke.Janssen <Ocke.Janssen@oracle.com> | 2011-01-20 16:36:49 +0100 |
commit | f3bbbfcb2f718908560ffa1c852433c7b7293e34 (patch) | |
tree | 8e9b73fbdf37ced8dde81650b6075deca9785c54 | |
parent | 9840529f8ad4c8f3ed8932db1af2c11b662b18c7 (diff) |
dba34d: length check corrected
-rw-r--r-- | wizards/com/sun/star/wizards/report/ReportWizard.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/report/ReportWizard.java b/wizards/com/sun/star/wizards/report/ReportWizard.java index 647eddaea46b..597893986282 100644 --- a/wizards/com/sun/star/wizards/report/ReportWizard.java +++ b/wizards/com/sun/star/wizards/report/ReportWizard.java @@ -457,7 +457,7 @@ public class ReportWizard extends DatabaseObjectWizard implements XTextListener, // Get the path to the extension and try to add the path to the class loader String sLocation = getPathToExtension(xMSF); // TODO: Umlaut in filename! - if (sLocation.length() == 0) + if (sLocation.length() > 0) { try { |