diff options
author | Friedemann Kleint <[email protected]> | 2009-05-07 15:34:52 +0200 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2009-05-07 15:34:52 +0200 |
commit | 14e39ba5afb77499f18b1fe4e9faf1d0bebd1981 (patch) | |
tree | c2def7d2169b411eaf7e491e2ee0737bd1de19f0 /src/shared/help/indexwindow.cpp | |
parent | 84b3b9cba2bc8d08aea5646e900d014b7d8af7b2 (diff) |
Fixed translation issues.
Diffstat (limited to 'src/shared/help/indexwindow.cpp')
-rw-r--r-- | src/shared/help/indexwindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shared/help/indexwindow.cpp b/src/shared/help/indexwindow.cpp index 3ce9dd1620b..d96d463c45f 100644 --- a/src/shared/help/indexwindow.cpp +++ b/src/shared/help/indexwindow.cpp @@ -134,12 +134,12 @@ bool IndexWindow::eventFilter(QObject *obj, QEvent *e) if (model) { QMap<QString, QUrl> links = model->linksForKeyword(keyword); if (links.count() == 1) { - CentralWidget::instance()-> + Help::Internal::CentralWidget::instance()-> setSourceInNewTab(links.constBegin().value()); } else { TopicChooser tc(this, keyword, links); if (tc.exec() == QDialog::Accepted) { - CentralWidget::instance()->setSourceInNewTab(tc.link()); + Help::Internal::CentralWidget::instance()->setSourceInNewTab(tc.link()); } } } @@ -158,10 +158,10 @@ bool IndexWindow::eventFilter(QObject *obj, QEvent *e) if (links.count() > 1) { TopicChooser tc(this, keyword, links); if (tc.exec() == QDialog::Accepted) { - CentralWidget::instance()->setSourceInNewTab(tc.link()); + Help::Internal::CentralWidget::instance()->setSourceInNewTab(tc.link()); } } else if (links.count() == 1) { - CentralWidget::instance()-> + Help::Internal::CentralWidget::instance()-> setSourceInNewTab(links.constBegin().value()); } } |