summaryrefslogtreecommitdiffstats
path: root/bibletime
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime')
-rw-r--r--bibletime/backend/cswordversekey.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bibletime/backend/cswordversekey.cpp b/bibletime/backend/cswordversekey.cpp
index 3687241..4a017dc 100644
--- a/bibletime/backend/cswordversekey.cpp
+++ b/bibletime/backend/cswordversekey.cpp
@@ -97,7 +97,7 @@ const QString CSwordVerseKey::book( const QString& newBook ) {
for (int testament = min; testament <= max && !finished; ++testament) {
for (int book = 0; book < BMAX[testament] && !finished; ++book) {
- if ( !strcmp(newBook.toUtf8().constData(), books[testament][book].name ) ) {
+ if ( !strcmp(newBook.utf8().data(), books[testament][book].name ) ) {
Testament(testament+1);
Book(book+1);
finished = true;