summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/dagger/opentextdlg.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/apps/dagger/opentextdlg.cpp b/noncore/apps/dagger/opentextdlg.cpp
index f7893a9..8c94a4b 100644
--- a/noncore/apps/dagger/opentextdlg.cpp
+++ b/noncore/apps/dagger/opentextdlg.cpp
@@ -58,12 +58,14 @@ OpenTextDlg::OpenTextDlg( QWidget *parent, sword::SWMgr *swordMgr, QPixmap *bibl
58 QString type; 58 QString type;
59 QPixmap *icon = 0x0; 59 QPixmap *icon = 0x0;
60 QListViewItem *parent = 0x0; 60 QListViewItem *parent = 0x0;
61 61
62 for ( it = swordMgr->Modules.begin(); it != swordMgr->Modules.end(); it++ ) 62 for ( it = swordMgr->Modules.begin(); it != swordMgr->Modules.end(); it++ )
63 { 63 {
64 if ( it->second )
65 {
64 type = it->second->Type(); 66 type = it->second->Type();
65 if ( type == "Biblical Texts" ) 67 if ( type == "Biblical Texts" )
66 { 68 {
67 icon = bibleIcon; 69 icon = bibleIcon;
68 parent = m_bibles; 70 parent = m_bibles;
69 } 71 }
@@ -78,12 +80,13 @@ OpenTextDlg::OpenTextDlg( QWidget *parent, sword::SWMgr *swordMgr, QPixmap *bibl
78 parent = m_lexicons; 80 parent = m_lexicons;
79 } 81 }
80 82
81 parent->insertItem( new QListViewItem( parent, QString::null, it->first.c_str() ) ); 83 parent->insertItem( new QListViewItem( parent, QString::null, it->first.c_str() ) );
82 } 84 }
83 } 85 }
86 }
84 87
85 m_textList.sort(); 88 m_textList.sort();
86} 89}
87 90
88void OpenTextDlg::slotItemClicked( QListViewItem *item ) 91void OpenTextDlg::slotItemClicked( QListViewItem *item )
89{ 92{