diff options
author | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2013-04-13 07:21:07 +0200 |
---|---|---|
committer | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2013-04-13 07:22:22 +0200 |
commit | 4146406205ce6f939944685e1931dcd45f3de708 (patch) | |
tree | acaf35336c3c9c41046f31e8be83f9500f30b699 /l10ntools/inc | |
parent | c1a2f580f0a5a479282cfa7ffa538de6d30b216a (diff) |
l10ntools: export use only en-US
So no need to ad it in a commandline parameter.
No need to use a vector to store languages.
Change-Id: I1f7d3bd131b5a9ff23d403cee4ac6804ae8e0a0b
Diffstat (limited to 'l10ntools/inc')
-rw-r--r-- | l10ntools/inc/cfgmerge.hxx | 3 | ||||
-rw-r--r-- | l10ntools/inc/export.hxx | 2 | ||||
-rw-r--r-- | l10ntools/inc/helpmerge.hxx | 2 | ||||
-rw-r--r-- | l10ntools/inc/lngmerge.hxx | 2 |
4 files changed, 4 insertions, 5 deletions
diff --git a/l10ntools/inc/cfgmerge.hxx b/l10ntools/inc/cfgmerge.hxx index c34ba06d5f9c..00838dea6c71 100644 --- a/l10ntools/inc/cfgmerge.hxx +++ b/l10ntools/inc/cfgmerge.hxx @@ -160,8 +160,7 @@ protected: public: CfgExport( const OString &rOutputFile, - const OString &rFilePath, - const OString &rLanguage + const OString &rFilePath ); ~CfgExport(); }; diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx index 10223cda974f..719102dfb5b4 100644 --- a/l10ntools/inc/export.hxx +++ b/l10ntools/inc/export.hxx @@ -243,7 +243,7 @@ private: void CutComment( OString &rText ); public: - Export(const OString &rOutput, const OString &rLanguage); + Export( const OString &rOutput ); Export(const OString &rMergeSource, const OString &rOutput, const OString &rLanguage); ~Export(); diff --git a/l10ntools/inc/helpmerge.hxx b/l10ntools/inc/helpmerge.hxx index 95aad6d15ab3..1f9c90acd5aa 100644 --- a/l10ntools/inc/helpmerge.hxx +++ b/l10ntools/inc/helpmerge.hxx @@ -43,7 +43,7 @@ public: /// Method append a PO file with the content of a parsed XML file /// @PRECOND rHelpFile is valid - static bool CreatePO( const OString &rPOFile_in, const OString &sHelpFile, const OString &rLanguage, + static bool CreatePO( const OString &rPOFile_in, const OString &sHelpFile, XMLFile *pXmlFile, const OString &rGsi1 ); /// Method merges the String from the POfile into XMLfile. Both Strings must diff --git a/l10ntools/inc/lngmerge.hxx b/l10ntools/inc/lngmerge.hxx index 8441824339ba..0f98eac2dc9c 100644 --- a/l10ntools/inc/lngmerge.hxx +++ b/l10ntools/inc/lngmerge.hxx @@ -53,7 +53,7 @@ public: sal_Bool bULFFormat); ~LngParser(); - sal_Bool CreatePO( const OString &rPOFile, const OString &rLanguage ); + sal_Bool CreatePO( const OString &rPOFile ); sal_Bool Merge(const OString &rPOFile, const OString &rDestinationFile, const OString &rLanguage ); }; |