summaryrefslogtreecommitdiff
path: root/l10ntools/source/help/HelpLinker.cxx
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-01-04 17:39:45 +0100
committerAndras Timar <atimar@suse.com>2012-01-04 17:41:00 +0100
commit8f21e3b66c2a7b0e60aa3a61ffff0509a2170e21 (patch)
treed22a704aab5398917636fb8ca1e9f0e162374956 /l10ntools/source/help/HelpLinker.cxx
parent58c4853f5489d8e23ae7aabdb544cde80a711ece (diff)
help compiler: less verbose output to console
Diffstat (limited to 'l10ntools/source/help/HelpLinker.cxx')
-rw-r--r--l10ntools/source/help/HelpLinker.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/l10ntools/source/help/HelpLinker.cxx b/l10ntools/source/help/HelpLinker.cxx
index b75499126dd3..bf237c0e8ca8 100644
--- a/l10ntools/source/help/HelpLinker.cxx
+++ b/l10ntools/source/help/HelpLinker.cxx
@@ -483,22 +483,10 @@ void HelpLinker::link() throw( HelpProcessingException )
if ( (!bExtensionMode || bIndexForExtension) && !helpFiles.empty())
initIndexerPreProcessor();
- if( !bExtensionMode )
- {
- std::cout << "Making " << outputFile.native_file_string() <<
- " from " << helpFiles.size() << " input files" << std::endl;
- }
-
// here we start our loop over the hzip files.
HashSet::iterator end = helpFiles.end();
for (HashSet::iterator iter = helpFiles.begin(); iter != end; ++iter)
{
- if( !bExtensionMode )
- {
- std::cout << ".";
- std::cout.flush();
- }
-
// process one file
// streamTable contains the streams in the hzip file
StreamTable streamTable;
@@ -671,8 +659,6 @@ void HelpLinker::link() throw( HelpProcessingException )
}
} // while loop over hzip files ending
- if( !bExtensionMode )
- std::cout << std::endl;
} // try
catch( const HelpProcessingException& )
@@ -1040,7 +1026,6 @@ void HelpLinker::main( std::vector<std::string> &args,
int main(int argc, char**argv)
{
- sal_uInt32 starttime = osl_getGlobalTimer();
std::vector<std::string> args;
for (int i = 1; i < argc; ++i)
args.push_back(std::string(argv[i]));
@@ -1055,8 +1040,6 @@ int main(int argc, char**argv)
std::cerr << e.m_aErrorMsg;
exit(1);
}
- sal_uInt32 endtime = osl_getGlobalTimer();
- std::cout << "time taken was " << (endtime-starttime)/1000.0 << " seconds" << std::endl;
return 0;
}