diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:19:12 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 14:19:12 +0000 |
commit | e649f5df2ca9a7d9e43af3574693ba44e810d08d (patch) | |
tree | 31a4085157e37c2dc09690f2b21115ba901dbd12 | |
parent | ba88cbd1139b17485893dd170e3cc37526ca6fd4 (diff) |
INTEGRATION: CWS mipselport01 (1.34.4); FILE MERGED
2007/10/13 13:06:19 cmc 1.34.4.1: #ii81481# add linux mips
-rw-r--r-- | automation/source/testtool/objtest.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/automation/source/testtool/objtest.cxx b/automation/source/testtool/objtest.cxx index eee3b3d4caa4..9d2598bcea68 100644 --- a/automation/source/testtool/objtest.cxx +++ b/automation/source/testtool/objtest.cxx @@ -4,9 +4,9 @@ * * $RCSfile: objtest.cxx,v $ * - * $Revision: 1.34 $ + * $Revision: 1.35 $ * - * last change: $Author: vg $ $Date: 2007-09-20 14:45:22 $ + * last change: $Author: hr $ $Date: 2007-11-02 15:19:12 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -538,6 +538,8 @@ void TestToolObj::LoadIniFile() // Laden der IniEinstellungen, die d abGP.Append( "16" ); // Linux SPARC #elif defined OS2 abGP.Append( "17" ); +#elif defined LINUX && defined MIPS + abGP.Append( "18" ); // Linux MIPS #else #error ("unknown platform. please request an ID for your platform on qa/dev") #endif @@ -2938,7 +2940,7 @@ SbxVariable* TestToolObj::Find( const String& aStr, SbxClassType aType) String TestToolObj::GetRevision( String const &aSourceIn ) { - // search $Revision: 1.34 $ + // search $Revision: 1.35 $ xub_StrLen nPos; if ( ( nPos = aSourceIn.SearchAscii( "$Revision:" ) ) != STRING_NOTFOUND ) return aSourceIn.Copy( nPos+ 10, aSourceIn.SearchAscii( "$", nPos+10 ) -nPos-10); |