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 | |||
@@ -9,32 +9,33 @@ Foundation; either version 2 of the License, or (at your option) any later versi | |||
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 | ||