mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
fix:epwing code format
This commit is contained in:
parent
2ffd4940d0
commit
7b434cffaf
|
@ -899,7 +899,7 @@ bool EpwingBook::getNextHeadword( EpwingHeadword & head )
|
|||
}
|
||||
else
|
||||
{
|
||||
allHeadwordPositions[ head.headword ]<<EWPos( pos.page, pos.offset );
|
||||
allHeadwordPositions[ head.headword ] << EWPos( pos.page, pos.offset );
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
@ -973,7 +973,7 @@ bool EpwingBook::getNextHeadword( EpwingHeadword & head )
|
|||
}
|
||||
else
|
||||
{
|
||||
allHeadwordPositions[ head.headword ]<<EWPos( pos.page, pos.offset );
|
||||
allHeadwordPositions[ head.headword ] << EWPos( pos.page, pos.offset );
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -78,7 +78,7 @@ class EpwingBook
|
|||
QStringList imageCacheList, soundsCacheList, moviesCacheList, fontsCacheList;
|
||||
QMap< QString, QString > baseFontsMap, customFontsMap;
|
||||
QVector< int > refPages, refOffsets;
|
||||
QMap< QString, QList<EWPos> > allHeadwordPositions;
|
||||
QMap< QString, QList< EWPos > > allHeadwordPositions;
|
||||
QVector< EWPos > LinksQueue;
|
||||
int refOpenCount, refCloseCount;
|
||||
static Mutex libMutex;
|
||||
|
|
Loading…
Reference in a new issue