diff options
-rw-r--r-- | l10ntools/source/helpex.cxx | 2 | ||||
-rw-r--r-- | l10ntools/source/idxdict/idxdict.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/helpex.cxx b/l10ntools/source/helpex.cxx index 38b1e7952430..c45564de2e65 100644 --- a/l10ntools/source/helpex.cxx +++ b/l10ntools/source/helpex.cxx @@ -122,7 +122,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) { { HelpParser aParser( aArgs.m_sInputFile ); hasNoError = - aParser.CreatePO( + HelpParser::CreatePO( aArgs.m_sOutputFile, aArgs.m_sInputFile, new XMLFile( OString('0') ), "help" ); } diff --git a/l10ntools/source/idxdict/idxdict.cxx b/l10ntools/source/idxdict/idxdict.cxx index 035296a233d7..e35bceaa0aea 100644 --- a/l10ntools/source/idxdict/idxdict.cxx +++ b/l10ntools/source/idxdict/idxdict.cxx @@ -27,7 +27,7 @@ int main(int argc, char *argv[]) ::exit(99); } // This call improves performance by approx 5x - cin.sync_with_stdio(false); + std::ios_base::sync_with_stdio(false); const char * outputFile(argv[2]); char inputBuffer[MAXLINE]; |