diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-02-24 16:21:30 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-02-24 16:21:30 +0000 |
commit | d0d6f5e1bff954580298dcc938956fa64a7ee44b (patch) | |
tree | be14533de80c4a90b641972010b304d557a3acaf /qadevOOo/runner/convwatch/OSHelper.java | |
parent | 7041e139e69bca8444c468ba365025d199bb1b1f (diff) |
INTEGRATION: CWS qadev21 (1.2.14); FILE MERGED
2005/01/24 14:29:33 lla 1.2.14.1: #i31243#
Diffstat (limited to 'qadevOOo/runner/convwatch/OSHelper.java')
-rw-r--r-- | qadevOOo/runner/convwatch/OSHelper.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/convwatch/OSHelper.java b/qadevOOo/runner/convwatch/OSHelper.java index 433c680989d9..4b98581fe609 100644 --- a/qadevOOo/runner/convwatch/OSHelper.java +++ b/qadevOOo/runner/convwatch/OSHelper.java @@ -2,9 +2,9 @@ * * $RCSfile: OSHelper.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Date: 2004-11-02 11:18:57 $ + * last change: $Date: 2005-02-24 17:21:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,7 +66,7 @@ class OSHelper public static boolean isWindows() { String sOSName = System.getProperty("os.name"); - if (sOSName.startsWith("Win")) + if (sOSName.toLowerCase().startsWith("windows")) { return true; } |