summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger/textwidget.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/dagger/textwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/dagger/textwidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/dagger/textwidget.h b/noncore/apps/dagger/textwidget.h
index 647eae9..f78ef69 100644
--- a/noncore/apps/dagger/textwidget.h
+++ b/noncore/apps/dagger/textwidget.h
@@ -33,29 +33,29 @@ public:
TextWidget( QWidget *parent = 0x0, sword::SWModule *module = 0x0, int numVerses = 5,
const QFont *font = 0x0 );
~TextWidget();
const QString &getFullKey() { return m_fullKey; }
const QString &getAbbrevKey() { return m_abbrevKey; }
QString getModuleName() { return QString( m_module->Name() ); }
sword::SWModule *getModule() { return m_module; }
QString getCurrVerse();
bool isBibleText() const { return m_isBibleText; }
- void prevChapter();
+ void prevPage();
void prevVerse();
void setKey( const QString &newKey );
void nextVerse();
- void nextChapter();
+ void nextPage();
public slots:
void slotNumVersesChanged( int numVerses );
void slotFontChanged( const QFont *newFont );
void slotOptionChanged();
private:
sword::SWModule *m_module; // Sword module to display in this widget
sword::SWKey *m_key; // Current module key
bool m_isBibleText; // Indicates whether module is a Bible or not
QTextBrowser *m_textView; // Displays module's text