diff options
author | Robert Loehning <[email protected]> | 2012-03-05 22:30:59 +0100 |
---|---|---|
committer | Robert Löhning <[email protected]> | 2012-03-06 12:46:52 +0100 |
commit | b41171c8473e7202f67aaa0f7ace1bf40e02919e (patch) | |
tree | 47de72e1d07c7bd86f7f576417ae6c32671c12a5 /src/shared/help/indexwindow.cpp | |
parent | 9f05e6495dfeda3b78ba2da356832367194633bb (diff) |
Normalized connect()s
Change-Id: Id353ab140a46e06ffc3abf667ab3b234e749e17c
Reviewed-by: Oswald Buddenhagen <[email protected]>
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/shared/help/indexwindow.cpp')
-rw-r--r-- | src/shared/help/indexwindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/help/indexwindow.cpp b/src/shared/help/indexwindow.cpp index d888c3e8db5..1f43e309127 100644 --- a/src/shared/help/indexwindow.cpp +++ b/src/shared/help/indexwindow.cpp @@ -90,10 +90,10 @@ IndexWindow::IndexWindow() SLOT(disableSearchLineEdit())); connect(engine->indexModel(), SIGNAL(indexCreated()), this, SLOT(enableSearchLineEdit())); - connect(m_indexWidget, SIGNAL(linkActivated(QUrl, QString)), this, + connect(m_indexWidget, SIGNAL(linkActivated(QUrl,QString)), this, SIGNAL(linkActivated(QUrl))); - connect(m_indexWidget, SIGNAL(linksActivated(QMap<QString, QUrl>, QString)), - this, SIGNAL(linksActivated(QMap<QString, QUrl>, QString))); + connect(m_indexWidget, SIGNAL(linksActivated(QMap<QString,QUrl>,QString)), + this, SIGNAL(linksActivated(QMap<QString,QUrl>,QString))); connect(m_searchLineEdit, SIGNAL(returnPressed()), m_indexWidget, SLOT(activateCurrentItem())); m_indexWidget->setFrameStyle(QFrame::NoFrame); |