From: Jeremy Paul Whiting Date: Sat, 11 Aug 2007 20:22:16 +0000 (+0000) Subject: do something with the falsefriends X-Git-Tag: v3.93.0~89 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=97cceff184509ce1667906323df36a59af93d169;p=libqmvoc.git do something with the falsefriends svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=699017 --- diff --git a/keduvocdocument/keduvoctranslation.cpp b/keduvocdocument/keduvoctranslation.cpp index 42cf409..cb35500 100644 --- a/keduvocdocument/keduvoctranslation.cpp +++ b/keduvocdocument/keduvoctranslation.cpp @@ -157,14 +157,13 @@ void KEduVocTranslation::setComment ( const QString & expr ) void KEduVocTranslation::setFalseFriend ( int indexFrom, const QString & expr ) { -// m_falseFriends[indexFrom] = expr.simplified(); + d->m_falseFriends[indexFrom] = expr.simplified(); } QString KEduVocTranslation::falseFriend ( int indexFrom ) const { -// return m_falseFriends.value(indexFrom); -return QString(); + return d->m_falseFriends.value(indexFrom); }