From 8a74037f6174f187ea3f5583d6c253752792128a Mon Sep 17 00:00:00 2001 From: drw Date: Wed, 31 Aug 2005 19:21:49 +0000 Subject: Fix support for non-English language texts --- (limited to 'noncore/apps') diff --git a/noncore/apps/dagger/ChangeLog b/noncore/apps/dagger/ChangeLog index 22b20d4..804a899 100644 --- a/noncore/apps/dagger/ChangeLog +++ b/noncore/apps/dagger/ChangeLog @@ -1,3 +1,8 @@ +2005-08-31 Dan Williams + + * Released version 0.9.3 + * Fix support for non-English languages + 2005-08-09 Dan Williams * Released version 0.9.2 diff --git a/noncore/apps/dagger/README b/noncore/apps/dagger/README index 47b8eee..9ca0d8c 100644 --- a/noncore/apps/dagger/README +++ b/noncore/apps/dagger/README @@ -2,7 +2,7 @@ /* /* Opie - Dagger /* =============== -/* Version 0.9.2 +/* Version 0.9.3 /* /* A Bible study/reader application /* diff --git a/noncore/apps/dagger/TODO b/noncore/apps/dagger/TODO index 21426aa..28bda6f 100644 --- a/noncore/apps/dagger/TODO +++ b/noncore/apps/dagger/TODO @@ -2,7 +2,7 @@ /* /* Opie - Dagger /* =============== -/* Version 0.9.2 +/* Version 0.9.3 /* /* A Bible study/reader application /* @@ -17,9 +17,8 @@ To-do for Opie-Dagger - August, 2005 ====================== 1. Implement module installation -2. Fix support for other languages -3. Fix display sleep prevention -4. Implement footnote cross-referencing +2. Fix display sleep prevention +3. Implement footnote cross-referencing ====================== = Future releases = diff --git a/noncore/apps/dagger/opie-dagger.control b/noncore/apps/dagger/opie-dagger.control index e613ddb..dde696a 100644 --- a/noncore/apps/dagger/opie-dagger.control +++ b/noncore/apps/dagger/opie-dagger.control @@ -6,4 +6,4 @@ Depends: task-opie-minimal, libopiecore2, libopieui2 Architecture: arm Maintainer: Dan Williams (drw@handhelds.org) Description: A Bible study program utilizing the Sword library. -Version: 0.9.2$EXTRAVERSION +Version: 0.9.3$EXTRAVERSION diff --git a/noncore/apps/dagger/textwidget.cpp b/noncore/apps/dagger/textwidget.cpp index 9f7de66..2df6455 100644 --- a/noncore/apps/dagger/textwidget.cpp +++ b/noncore/apps/dagger/textwidget.cpp @@ -145,7 +145,7 @@ void TextWidget::setText() for ( int i = 0; i < m_numVerses; i++ ) { QString key = ( QString ) m_module->KeyText(); - QString verseStr = ( QString ) *m_module; + QString verseStr = QString::fromUtf8( *m_module ); // Format current verse (adding chapter and/or book headings if necessary) int verse = static_cast(m_module->Key()).Verse(); -- cgit v0.9.0.2