just a cleanup of redundant variable

This commit is contained in:
ars_goldendict 2009-05-05 21:57:38 +00:00
parent 1711bbd5aa
commit 5307b809b3

View file

@ -985,7 +985,7 @@ vector< sptr< Dictionary::Class > > makeDictionaries(
{ {
vector< string > dictFiles( 1, *i ); vector< string > dictFiles( 1, *i );
string idxFileName, dictFileName, synFileName, dictName; string idxFileName, dictFileName, synFileName;
findCorrespondingFiles( *i, idxFileName, dictFileName, synFileName ); findCorrespondingFiles( *i, idxFileName, dictFileName, synFileName );
@ -1030,8 +1030,6 @@ vector< sptr< Dictionary::Class > > makeDictionaries(
printf( "bookname = %s\n", ifo.bookname.c_str() ); printf( "bookname = %s\n", ifo.bookname.c_str() );
printf( "wordcount = %u\n", ifo.wordcount ); printf( "wordcount = %u\n", ifo.wordcount );
dictName = ifo.bookname;
initializing.indexingDictionary( ifo.bookname ); initializing.indexingDictionary( ifo.bookname );
File::Class idx( indexFile, "wb" ); File::Class idx( indexFile, "wb" );
@ -1100,10 +1098,10 @@ vector< sptr< Dictionary::Class > > makeDictionaries(
// if no languages found, try dictionary's name // if no languages found, try dictionary's name
if ( langs.first == 0 || langs.second == 0 ) if ( langs.first == 0 || langs.second == 0 )
{ {
// qDebug() << QString::fromStdString( dictName ); // qDebug() << QString::fromStdString( ifo.bookname );
langs = langs =
LangCoder::findIdsForFilename( QString::fromStdString( dictName ) ); LangCoder::findIdsForFilename( QString::fromStdString( ifo.bookname ) );
idxHeader.langFrom = langs.first; idxHeader.langFrom = langs.first;
idxHeader.langTo = langs.second; idxHeader.langTo = langs.second;
} }