mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
[autofix.ci] apply automated fixes
This commit is contained in:
parent
6f95e19881
commit
88a54b0bbf
|
@ -1735,9 +1735,10 @@ vector< sptr< Dictionary::Class > > makeDictionaries( vector< string > const & f
|
||||||
|
|
||||||
// Make sure it's not an abbreviation file. extSize of ".dsl" or ".dsl.dz"
|
// Make sure it's not an abbreviation file. extSize of ".dsl" or ".dsl.dz"
|
||||||
|
|
||||||
if ( int extSize = ( uncompressedDsl ? 4 : 7 ); (fileName.size() >= ( 5 + extSize )) && QByteArrayView( fileName ).chopped( extSize ).last( 5 ).compare( "_abrv", Qt::CaseInsensitive )) {
|
if ( int extSize = ( uncompressedDsl ? 4 : 7 ); ( fileName.size() >= ( 5 + extSize ) )
|
||||||
// It is, skip it
|
&& QByteArrayView( fileName ).chopped( extSize ).last( 5 ).compare( "_abrv", Qt::CaseInsensitive ) ) {
|
||||||
continue;
|
// It is, skip it
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned atLine = 0; // Indicates current line in .dsl, for debug purposes
|
unsigned atLine = 0; // Indicates current line in .dsl, for debug purposes
|
||||||
|
|
Loading…
Reference in a new issue