~pkgcrosswire/bibletime/main

« back to all changes in this revision

Viewing changes to src/backend/drivers/cswordlexiconmoduleinfo.cpp

  • Committer: Jonathan Marsden
  • Date: 2011-12-23 20:32:12 UTC
  • Revision ID: jmarsden@fastmail.fm-20111223203212-1g3e35rlhbys07iu
New upstream version 2.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
 
87
87
    do {
88
88
        if ( isUnicode() ) {
89
 
            m_entries.append(QString::fromUtf8(module()->KeyText()));
 
89
            m_entries.append(QString::fromUtf8(module()->getKeyText()));
90
90
        }
91
91
        else {
92
92
            //for latin1 modules use fromLatin1 because of speed
93
93
            QTextCodec* codec = QTextCodec::codecForName("Windows-1252");
94
 
            m_entries.append(codec->toUnicode(module()->KeyText()));
 
94
            m_entries.append(codec->toUnicode(module()->getKeyText()));
95
95
        }
96
96
 
97
97
        module()->increment();