diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:22:46 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-22 21:22:46 +0200 |
commit | bb0be61558032932ca1775a5068a3e331f5be292 (patch) | |
tree | 80796ecc3ad6c38af64872cd09b48088b5ddc27f /src/urlbar.cpp | |
parent | Removed unuseful stackedurlbar.cpp file (diff) | |
download | rekonq-bb0be61558032932ca1775a5068a3e331f5be292.tar.xz |
Some stupid fixes on style, spaces and some comments added
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r-- | src/urlbar.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp index 6ece4783..4b253773 100644 --- a/src/urlbar.cpp +++ b/src/urlbar.cpp @@ -51,6 +51,7 @@ QColor UrlBar::s_defaultBaseColor; + UrlBar::UrlBar(QWidget *parent) : KHistoryComboBox(true, parent) , m_lineEdit(new LineEdit) @@ -149,6 +150,7 @@ void UrlBar::setProgress(int progress) repaint(); } + void UrlBar::slotUpdateUrl() { if (count()) @@ -172,7 +174,7 @@ void UrlBar::slotUpdateUrl() } -inline void UrlBar::slotActivated(const QString& url) +void UrlBar::slotActivated(const QString& url) { if (url.isEmpty()) return; @@ -185,7 +187,7 @@ inline void UrlBar::slotActivated(const QString& url) } -inline void UrlBar::slotCleared() +void UrlBar::slotCleared() { // clear the history on user's request from context menu clear(); @@ -193,7 +195,7 @@ inline void UrlBar::slotCleared() } -inline void UrlBar::slotLoadFinished(bool) +void UrlBar::slotLoadFinished(bool) { // reset progress bar after small delay m_progress = 0; @@ -201,7 +203,7 @@ inline void UrlBar::slotLoadFinished(bool) } -inline void UrlBar::slotUpdateProgress(int progress) +void UrlBar::slotUpdateProgress(int progress) { m_progress = progress; repaint(); @@ -290,7 +292,6 @@ bool UrlBar::isLoading() } - KCompletion *UrlBar::completion() { // make sure completion was created @@ -321,6 +322,7 @@ KCompletion *UrlBar::completion() return m_completion; } + HistoryCompletionModel *UrlBar::completionModel() { if (!m_completionModel) @@ -329,4 +331,4 @@ HistoryCompletionModel *UrlBar::completionModel() m_completionModel->setSourceModel(Application::historyManager()->historyFilterModel()); } return m_completionModel; -}
\ No newline at end of file +} |