summaryrefslogtreecommitdiffstats
path: root/l10ntools/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-14 16:31:22 +0200
committerNoel Grandin <noel@peralex.com>2016-01-15 09:36:41 +0200
commit602a64939da2df486099eba967aa9148ced1d8d4 (patch)
tree886c50020b24d855cb3480943171b1129742fa43 /l10ntools/inc
parentloplugin:unusedmethods unused return value in sc (diff)
downloadcore-602a64939da2df486099eba967aa9148ced1d8d4.tar.gz
core-602a64939da2df486099eba967aa9148ced1d8d4.zip
loplugin:unusedmethods unused return value in l10ntools,linguistic
Change-Id: I11571c25e527787a2054bc8106a27c44b8a96116
Diffstat (limited to 'l10ntools/inc')
-rw-r--r--l10ntools/inc/cfgmerge.hxx2
-rw-r--r--l10ntools/inc/export.hxx7
-rw-r--r--l10ntools/inc/xrmmerge.hxx2
3 files changed, 5 insertions, 6 deletions
diff --git a/l10ntools/inc/cfgmerge.hxx b/l10ntools/inc/cfgmerge.hxx
index 355f4c5c52e5..9f90fabc39f0 100644
--- a/l10ntools/inc/cfgmerge.hxx
+++ b/l10ntools/inc/cfgmerge.hxx
@@ -127,7 +127,7 @@ public:
CfgParser();
virtual ~CfgParser();
- int Execute( int nToken, char * pToken );
+ void Execute( int nToken, char * pToken );
};
/// Export strings from *.xcu files
diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx
index e4bbb873485a..7afc931c6ecb 100644
--- a/l10ntools/inc/export.hxx
+++ b/l10ntools/inc/export.hxx
@@ -144,8 +144,8 @@ private:
ParserQueue* pParseQueue;
- bool WriteData( ResData *pResData, bool bCreateNew = false ); ///< called before dest. cur ResData
- bool WriteExportList( ResData *pResData, ExportList& rExportList, const sal_uInt16 nTyp );
+ void WriteData( ResData *pResData, bool bCreateNew = false ); ///< called before dest. cur ResData
+ void WriteExportList( ResData *pResData, ExportList& rExportList, const sal_uInt16 nTyp );
OString FullId(); ///< creates cur. GID
@@ -175,7 +175,7 @@ public:
~Export();
void Init();
- int Execute( int nToken, const char * pToken ); ///< called from lexer
+ void Execute( int nToken, const char * pToken ); ///< called from lexer
void SetError() { bError = true; }
bool GetError() { return bError; }
@@ -298,7 +298,6 @@ public:
~MergeData();
MergeEntrys* GetMergeEntries() { return pMergeEntrys;}
- bool operator==( ResData *pData );
};
diff --git a/l10ntools/inc/xrmmerge.hxx b/l10ntools/inc/xrmmerge.hxx
index fc58aa6998ff..8b421847bb43 100644
--- a/l10ntools/inc/xrmmerge.hxx
+++ b/l10ntools/inc/xrmmerge.hxx
@@ -61,7 +61,7 @@ public:
XRMResParser();
virtual ~XRMResParser();
- int Execute( int nToken, char * pToken );
+ void Execute( int nToken, char * pToken );
void SetError( bool bErr = true ) { bError = bErr; }
bool GetError() { return bError; }