author | paule <paule> | 2007-07-08 08:12:59 (UTC) |
---|---|---|
committer | paule <paule> | 2007-07-08 08:12:59 (UTC) |
commit | 4fb748a55cdd77f4bab8dc692ab8ebae62609abe (patch) (unidiff) | |
tree | 6c5c562f364c6da44c7e3221c478f5499279909f | |
parent | 06bcedc305af0c1fe026abde4f4cc64b12b8ed63 (diff) | |
download | opie-4fb748a55cdd77f4bab8dc692ab8ebae62609abe.zip opie-4fb748a55cdd77f4bab8dc692ab8ebae62609abe.tar.gz opie-4fb748a55cdd77f4bab8dc692ab8ebae62609abe.tar.bz2 |
Add missing include to fix building against sword 1.5.9. Fixes bug #1851. Patch from Marek Vasut <marek.vasut@gmail.com>.
-rw-r--r-- | noncore/apps/dagger/opentextdlg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/apps/dagger/opentextdlg.h b/noncore/apps/dagger/opentextdlg.h index 2b53410..9d909e2 100644 --- a/noncore/apps/dagger/opentextdlg.h +++ b/noncore/apps/dagger/opentextdlg.h | |||
@@ -1,49 +1,50 @@ | |||
1 | /* | 1 | /* |
2 | Dagger - A Bible study program utilizing the Sword library. | 2 | Dagger - A Bible study program utilizing the Sword library. |
3 | Copyright (c) 2004 Dan Williams <drw@handhelds.org> | 3 | Copyright (c) 2004 Dan Williams <drw@handhelds.org> |
4 | 4 | ||
5 | This file is free software; you can redistribute it and/or modify it under | 5 | This file is free software; you can redistribute it and/or modify it under |
6 | the terms of the GNU General Public License as published by the Free Software | 6 | the terms of the GNU General Public License as published by the Free Software |
7 | Foundation; either version 2 of the License, or (at your option) any later version. | 7 | Foundation; either version 2 of the License, or (at your option) any later version. |
8 | 8 | ||
9 | This file is distributed in the hope that it will be useful, but WITHOUT ANY | 9 | This file is distributed in the hope that it will be useful, but WITHOUT ANY |
10 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | 10 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
11 | PARTICULAR PURPOSE. See the GNU General Public License for more details. | 11 | PARTICULAR PURPOSE. See the GNU General Public License for more details. |
12 | 12 | ||
13 | You should have received a copy of the GNU General Public License along with this | 13 | You should have received a copy of the GNU General Public License along with this |
14 | file; see the file COPYING. If not, write to the Free Software Foundation, Inc., | 14 | file; see the file COPYING. If not, write to the Free Software Foundation, Inc., |
15 | 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 15 | 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #ifndef OPENTEXTDLG_H | 18 | #ifndef OPENTEXTDLG_H |
19 | #define OPENTEXTDLG_H | 19 | #define OPENTEXTDLG_H |
20 | 20 | ||
21 | #include <qdialog.h> | 21 | #include <qdialog.h> |
22 | #include <qlistview.h> | 22 | #include <qlistview.h> |
23 | 23 | ||
24 | #include <swmgr.h> | 24 | #include <swmgr.h> |
25 | #include <swmodule.h> | ||
25 | 26 | ||
26 | class QPixmap; | 27 | class QPixmap; |
27 | 28 | ||
28 | class OpenTextDlg : public QDialog | 29 | class OpenTextDlg : public QDialog |
29 | { | 30 | { |
30 | Q_OBJECT | 31 | Q_OBJECT |
31 | 32 | ||
32 | public: | 33 | public: |
33 | OpenTextDlg( QWidget *parent = 0x0, sword::SWMgr *swordMgr = 0x0, QPixmap *bibleIcon = 0x0, | 34 | OpenTextDlg( QWidget *parent = 0x0, sword::SWMgr *swordMgr = 0x0, QPixmap *bibleIcon = 0x0, |
34 | QPixmap *commentaryIcon = 0x0, QPixmap *lexiconIcon = 0x0 ); | 35 | QPixmap *commentaryIcon = 0x0, QPixmap *lexiconIcon = 0x0 ); |
35 | 36 | ||
36 | QString selectedText() { return m_textList.currentItem()->text( 1 ); }; | 37 | QString selectedText() { return m_textList.currentItem()->text( 1 ); }; |
37 | 38 | ||
38 | private: | 39 | private: |
39 | QListView m_textList; // List of available texts/modules | 40 | QListView m_textList; // List of available texts/modules |
40 | 41 | ||
41 | QListViewItem *m_bibles; // Pointer to bible section header | 42 | QListViewItem *m_bibles; // Pointer to bible section header |
42 | QListViewItem *m_lexicons; // Pointer to lexicon/dictionary section header | 43 | QListViewItem *m_lexicons; // Pointer to lexicon/dictionary section header |
43 | QListViewItem *m_commentaries; // Pointer to commentary section header | 44 | QListViewItem *m_commentaries; // Pointer to commentary section header |
44 | 45 | ||
45 | private slots: | 46 | private slots: |
46 | void slotItemClicked( QListViewItem *item ); | 47 | void slotItemClicked( QListViewItem *item ); |
47 | }; | 48 | }; |
48 | 49 | ||
49 | #endif | 50 | #endif |