summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-11-01 16:12:23 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-11-01 16:12:23 +0000
commitadb0780c0db27b757251db7ef458aaf5a6001fdf (patch)
treebf057047a5df818169213c0d216f956fde1a2038 /tools
parentb137d5ad355da2702174273d07930a323aeb098a (diff)
INTEGRATION: CWS pj85 (1.26.40); FILE MERGED
2007/10/13 18:57:47 pjanik 1.26.40.1: #i78467#: Remove old Mac code.
Diffstat (limited to 'tools')
-rw-r--r--tools/bootstrp/prj.cxx17
1 files changed, 5 insertions, 12 deletions
diff --git a/tools/bootstrp/prj.cxx b/tools/bootstrp/prj.cxx
index 0dcaa657b1b8..aa3d4772e2f6 100644
--- a/tools/bootstrp/prj.cxx
+++ b/tools/bootstrp/prj.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: prj.cxx,v $
*
- * $Revision: 1.26 $
+ * $Revision: 1.27 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 22:07:06 $
+ * last change: $Author: hr $ $Date: 2007-11-01 17:12:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -213,7 +213,7 @@ ByteString CommandData::GetOSTypeString()
switch (nOSType)
{
- case OS_WIN16 | OS_WIN32 | OS_OS2 | OS_UNX | OS_MAC :
+ case OS_WIN16 | OS_WIN32 | OS_OS2 | OS_UNX :
aRetStr = "all";
break;
case OS_WIN32 | OS_WIN16 :
@@ -231,9 +231,6 @@ ByteString CommandData::GetOSTypeString()
case OS_WIN32 :
aRetStr = "n";
break;
- case OS_MAC :
- aRetStr = "m";
- break;
default :
aRetStr = "none";
}
@@ -800,7 +797,7 @@ void Star::InsertToken ( char *yytext )
aWhatOS = aWhatOS.GetToken( 0, ',' );
}
if ( aWhatOS == "all" )
- nOSType = ( OS_WIN16 | OS_WIN32 | OS_OS2 | OS_UNX | OS_MAC );
+ nOSType = ( OS_WIN16 | OS_WIN32 | OS_OS2 | OS_UNX );
else if ( aWhatOS == "w" )
nOSType = ( OS_WIN16 | OS_WIN32 );
else if ( aWhatOS == "p" )
@@ -811,8 +808,6 @@ void Star::InsertToken ( char *yytext )
nOSType = OS_WIN16;
else if ( aWhatOS == "n" )
nOSType = OS_WIN32;
- else if ( aWhatOS == "m" )
- nOSType = OS_MAC;
else
nOSType = OS_NONE;
}
@@ -1412,7 +1407,7 @@ void StarWriter::InsertTokenLine ( ByteString& rString )
}
aWhatOS = aWhatOS.GetToken( 0, ',' );
if ( aWhatOS == "all" )
- nOSType = ( OS_WIN16 | OS_WIN32 | OS_OS2 | OS_UNX | OS_MAC );
+ nOSType = ( OS_WIN16 | OS_WIN32 | OS_OS2 | OS_UNX );
else if ( aWhatOS == "w" )
nOSType = ( OS_WIN16 | OS_WIN32 );
else if ( aWhatOS == "p" )
@@ -1423,8 +1418,6 @@ void StarWriter::InsertTokenLine ( ByteString& rString )
nOSType = OS_WIN16;
else if ( aWhatOS == "n" )
nOSType = OS_WIN32;
- else if ( aWhatOS == "m" )
- nOSType = OS_MAC;
else
nOSType = OS_NONE;
}