summaryrefslogtreecommitdiff
path: root/autodoc/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-04-15 17:45:35 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-04-15 17:45:35 +0000
commitb3f2d2fdc0a3f0658d838ab067a2cf02db7fac5e (patch)
treed4f0fe63da3b6ecad4b811112898addea4bb4327 /autodoc/source
parent1eef6d1e14712f9dbf925c8a04f60c4b32d6cbfe (diff)
INTEGRATION: CWS adc5 (1.2.24); FILE MERGED
2003/04/15 17:29:24 np 1.2.24.4: autodoc version change 2003/04/15 16:06:19 np 1.2.24.3: #108787# 2003/04/15 16:03:57 np 1.2.24.2: #108787# 2003/04/15 16:01:17 np 1.2.24.1: #108787#
Diffstat (limited to 'autodoc/source')
-rw-r--r--autodoc/source/exes/adc_uni/adc_cl.cxx16
1 files changed, 12 insertions, 4 deletions
diff --git a/autodoc/source/exes/adc_uni/adc_cl.cxx b/autodoc/source/exes/adc_uni/adc_cl.cxx
index 83fe2280ea8c..5fa063b8d17d 100644
--- a/autodoc/source/exes/adc_uni/adc_cl.cxx
+++ b/autodoc/source/exes/adc_uni/adc_cl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: adc_cl.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: np $ $Date: 2002-11-14 18:02:00 $
+ * last change: $Author: hr $ $Date: 2003-04-15 18:45:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -293,7 +293,7 @@ CommandLine::~CommandLine()
int
CommandLine::Run() const
{
- Cout() << "\nAutodoc version 2.2.1"
+ Cout() << "\nAutodoc version 2.2.2"
<< "\n---------------------"
<< "\n" << Endl();
@@ -419,6 +419,7 @@ CommandLine::load_IncludedCommands( StringVector & out,
aFile.close();
bool bInToken = false;
+ StreamLock aTransmit(200);
for ( ; NOT aIncludedCommands.IsFinished(); aIncludedCommands.MoveOn() )
{
if (bInToken)
@@ -430,7 +431,13 @@ CommandLine::load_IncludedCommands( StringVector & out,
bInToken = false;
if ( strncmp(pToken, "-I:", 3) != 0 )
- out.push_back(String(pToken));
+ {
+ aTransmit().seekp(0);
+ aTransmit() << pToken;
+ aTransmit().replace_all('\\', *csv::ploc::Delimiter());
+ aTransmit().replace_all('/', *csv::ploc::Delimiter());
+ out.push_back(String(aTransmit().c_str()));
+ }
else
load_IncludedCommands(out, pToken+3);
}
@@ -443,6 +450,7 @@ CommandLine::load_IncludedCommands( StringVector & out,
bInToken = true;
}
} // endif (bInToken) else
+
} // end while()
}