summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger
authordrw <drw>2004-07-16 16:01:46 (UTC)
committer drw <drw>2004-07-16 16:01:46 (UTC)
commitf02993238f76eb8975bb4138f213d2211710afa4 (patch) (side-by-side diff)
treebfc6e3c46405456f4aace685a187e8c4cf628e8b /noncore/apps/dagger
parente9a15ba751cd53dd6baafceb8a3a5bbfcb5f2bfc (diff)
downloadopie-f02993238f76eb8975bb4138f213d2211710afa4.zip
opie-f02993238f76eb8975bb4138f213d2211710afa4.tar.gz
opie-f02993238f76eb8975bb4138f213d2211710afa4.tar.bz2
Fix to work with newest version of libsword (OptionsList -> StringList)
Diffstat (limited to 'noncore/apps/dagger') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/dagger/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/dagger/mainwindow.cpp b/noncore/apps/dagger/mainwindow.cpp
index b2e00e8..e886bd8 100644
--- a/noncore/apps/dagger/mainwindow.cpp
+++ b/noncore/apps/dagger/mainwindow.cpp
@@ -51,8 +51,8 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags /*fl*/ )
new sword::MarkupFilterMgr( sword::FMT_HTMLHREF ) );
// Retrieve list of available Sword module options (e.g. footnotes, Strong's numbers, etc.)
- sword::OptionsList swordOpts = m_swordMgr->getGlobalOptions();
- for ( sword::OptionsList::iterator it = swordOpts.begin(); it != swordOpts.end(); it++ )
+ sword::StringList swordOpts = m_swordMgr->getGlobalOptions();
+ for ( sword::StringList::iterator it = swordOpts.begin(); it != swordOpts.end(); it++ )
m_actionSwordOpts.append( new QAction( (*it).c_str(), QString::null, 0, this, 0 ) );
m_actionSwordOpts.sort();