[Libreoffice-commits] .: automation/source

Tor Lillqvist tml at kemper.freedesktop.org
Fri Jan 21 17:17:54 PST 2011


 automation/source/testtool/objtest.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 044d11057923144cb694cb4128d9eedb0632b1b0
Author: Tor Lillqvist <tlillqvist at novell.com>
Date:   Wed Jan 19 10:43:57 2011 +0200

    Split WNT case into INTEL and X86_64

diff --git a/automation/source/testtool/objtest.cxx b/automation/source/testtool/objtest.cxx
index 5a5b9a9..d5fe0cd 100644
--- a/automation/source/testtool/objtest.cxx
+++ b/automation/source/testtool/objtest.cxx
@@ -459,8 +459,10 @@ void TestToolObj::LoadIniFile()				// Laden der IniEinstellungen, die durch den
 
     String aGP;
     ByteString abGP;
-#ifdef WNT
-    abGP.Append( "501" );  // WinXP
+#if defined WNT && defined INTEL
+    abGP.Append( "501" );  // Windows on x86
+#elif defined WNT && defined X86_64
+    abGP.Append( "502" );  // Windows on x64
 #elif defined SOLARIS && defined SPARC
     abGP.Append( "01" );  // Solaris SPARC
 #elif defined SCO


More information about the Libreoffice-commits mailing list