fix: epwing remove unused parameter

This commit is contained in:
Xiao YiFang 2022-10-05 16:33:59 +08:00
parent 034e5e8378
commit 32689d71ad
3 changed files with 7 additions and 21 deletions

View file

@ -173,8 +173,7 @@ private:
string & articleHeadword,
string & articleText,
int & articlePage,
int & articleOffset,
QString word = 0 );
int & articleOffset );
void loadArticle( int articlePage, int articleOffset, string & articleHeadword,
string & articleText );
@ -287,16 +286,8 @@ void EpwingDictionary::removeDirectory( QString const & directory )
dir.rmdir( directory );
}
void EpwingDictionary::loadArticle( quint32 address,
string & articleHeadword,
string & articleText,
int & articlePage,
int & articleOffset,
QString word)
void EpwingDictionary::loadArticle(
quint32 address, string & articleHeadword, string & articleText, int & articlePage, int & articleOffset )
{
vector< char > chunk;
@ -316,7 +307,7 @@ void EpwingDictionary::loadArticle( quint32 address,
try
{
Mutex::Lock _( eBook.getLibMutex() );
eBook.getArticle( headword, text, articlePage, articleOffset, false, word );
eBook.getArticle( headword, text, articlePage, articleOffset, false);
}
catch( std::exception & e )
{
@ -531,15 +522,10 @@ void EpwingArticleRequest::run()
try
{
dict.loadArticle( chain[ x ].articleOffset,
headword,
articleText,
articlePage,
articleOffset,
gd::toQString(word) );
articleOffset );
}
catch(...)
{

View file

@ -1073,7 +1073,7 @@ void EpwingBook::fixHeadword( QString & headword )
}
void EpwingBook::getArticle( QString & headword, QString & articleText,
int page, int offset, bool text_only, QString word)
int page, int offset, bool text_only)
{
error_string.clear();
char buffer[ TextBufferSize + 1 ];

View file

@ -195,7 +195,7 @@ public:
// Retrieve article from dictionary
void getArticle( QString & headword, QString & articleText,
int page, int offset, bool text_only, QString word=0 );
int page, int offset, bool text_only );
const char * beginDecoration( unsigned int code );
const char * endDecoration( unsigned int code );