summaryrefslogtreecommitdiffstats
path: root/l10ntools/inc/export.hxx
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/export.hxx
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/export.hxx')
-rw-r--r--l10ntools/inc/export.hxx7
1 files changed, 3 insertions, 4 deletions
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 );
};