mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
GLS: Fix articles count in dictionary info
This commit is contained in:
parent
db3e0ab148
commit
edf52a6fac
2
gls.cc
2
gls.cc
|
@ -452,7 +452,7 @@ public:
|
||||||
{ return map< Dictionary::Property, string >(); }
|
{ return map< Dictionary::Property, string >(); }
|
||||||
|
|
||||||
virtual unsigned long getArticleCount() throw()
|
virtual unsigned long getArticleCount() throw()
|
||||||
{ return idxHeader.wordCount; }
|
{ return idxHeader.articleCount; }
|
||||||
|
|
||||||
virtual unsigned long getWordCount() throw()
|
virtual unsigned long getWordCount() throw()
|
||||||
{ return idxHeader.wordCount; }
|
{ return idxHeader.wordCount; }
|
||||||
|
|
Loading…
Reference in a new issue