mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
Fix typos
This commit is contained in:
parent
1dc4c24966
commit
4ec525d67d
|
@ -549,7 +549,7 @@ bgl_entry Babylon::readEntry( ResourceHandler * resourceHandler )
|
|||
}
|
||||
catch( Iconv::Ex & e )
|
||||
{
|
||||
qWarning( "Bgl: charset convertion error, no trancription processing's done: %s\n", e.what() );
|
||||
qWarning( "Bgl: charset conversion error, no trancription processing's done: %s\n", e.what() );
|
||||
transcription = std::string( block.data + pos + 3, length );
|
||||
}
|
||||
}
|
||||
|
@ -580,7 +580,7 @@ bgl_entry Babylon::readEntry( ResourceHandler * resourceHandler )
|
|||
}
|
||||
catch( Iconv::Ex & e )
|
||||
{
|
||||
qWarning( "Bgl: charset convertion error, no trancription processing's done: %s\n", e.what() );
|
||||
qWarning( "Bgl: charset conversion error, no trancription processing's done: %s\n", e.what() );
|
||||
transcription = std::string( block.data + pos + 4, length );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -343,7 +343,7 @@ void HunspellArticleRequest::run()
|
|||
}
|
||||
catch( Iconv::Ex & e )
|
||||
{
|
||||
gdWarning( "Hunspell: charset convertion error, no processing's done: %s\n", e.what() );
|
||||
gdWarning( "Hunspell: charset conversion error, no processing's done: %s\n", e.what() );
|
||||
}
|
||||
catch( std::exception & e )
|
||||
{
|
||||
|
@ -543,7 +543,7 @@ QVector< wstring > suggest( wstring & word, Mutex & hunspellMutex, Hunspell & hu
|
|||
}
|
||||
catch( Iconv::Ex & e )
|
||||
{
|
||||
gdWarning( "Hunspell: charset convertion error, no processing's done: %s\n", e.what() );
|
||||
gdWarning( "Hunspell: charset conversion error, no processing's done: %s\n", e.what() );
|
||||
}
|
||||
|
||||
#ifdef OLD_HUNSPELL_INTERFACE
|
||||
|
@ -671,7 +671,7 @@ void HunspellPrefixMatchRequest::run()
|
|||
}
|
||||
catch( Iconv::Ex & e )
|
||||
{
|
||||
gdWarning( "Hunspell: charset convertion error, no processing's done: %s\n", e.what() );
|
||||
gdWarning( "Hunspell: charset conversion error, no processing's done: %s\n", e.what() );
|
||||
}
|
||||
|
||||
finish();
|
||||
|
|
Loading…
Reference in a new issue