summaryrefslogtreecommitdiff
path: root/soldep
diff options
context:
space:
mode:
authorMalte Timmermann <Malte.Timmermann@sun.com>2010-06-30 09:48:27 +0200
committerMalte Timmermann <Malte.Timmermann@sun.com>2010-06-30 09:48:27 +0200
commit8d8a4abe42338b9d956e508e4661bdb51478dd41 (patch)
treea8f9e68298c35ca98304dfae72667150b62c6051 /soldep
parent566541e24c34bccc4e286d61d18c831b04da2990 (diff)
codecleanup02: #i112685# Removed ifdefs and code for MAC
Diffstat (limited to 'soldep')
-rw-r--r--soldep/bootstrp/prj.cxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/soldep/bootstrp/prj.cxx b/soldep/bootstrp/prj.cxx
index 9a677e92fe44..36495a429de8 100644
--- a/soldep/bootstrp/prj.cxx
+++ b/soldep/bootstrp/prj.cxx
@@ -41,19 +41,12 @@
//#define TEST 1
-#ifdef MAC
-#define putenv(x)
-#endif
-
#if defined(WNT) || defined(OS2)
#define LIST_DELIMETER ';'
#else
#ifdef UNX
#define LIST_DELIMETER ':'
#else
-#ifdef MAC
-#define LIST_DELIMETER ','
-#endif
#endif
#endif
@@ -63,9 +56,6 @@
#ifdef UNX
#define PATH_DELIMETER '/'
#else
-#ifdef MAC
-#define PATH_DELIMETER ':'
-#endif
#endif
#endif
@@ -142,14 +132,6 @@ ByteString SimpleConfig::GetNextLine()
ByteString aEraseString;
for ( USHORT i = 0; i<= nLength; i++)
{
-#ifdef MAC
- if ( aTmpStr.GetChar( i ) == '"')
- {
- if ( bFound) bFound = FALSE;
- else bFound = TRUE;
- aTmpStr.SetChar( i, '\t' );
- }
-#endif
if ( aTmpStr.GetChar( i ) == 0x20 && !bFound )
aTmpStr.SetChar( i, 0x09 );
}