diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-10-14 21:52:46 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-12-10 02:48:05 +0100 |
commit | 35cdc4f30f167037ef25f8f0a2d134cff74a599a (patch) | |
tree | 7a086a30651ad84d3bcfcb7a0710ef6f2f35de54 /src/urlbar/urlbar.h | |
parent | Fix opening when there are no pinned tabs (diff) | |
download | rekonq-35cdc4f30f167037ef25f8f0a2d134cff74a599a.tar.xz |
clean up urlbar url loading. We really are lighter now :)
Diffstat (limited to 'src/urlbar/urlbar.h')
-rw-r--r-- | src/urlbar/urlbar.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/urlbar/urlbar.h b/src/urlbar/urlbar.h index 3f283e39..304afbe4 100644 --- a/src/urlbar/urlbar.h +++ b/src/urlbar/urlbar.h @@ -122,9 +122,9 @@ private Q_SLOTS: bool isValidURL(QString url); /** - * Load digited url + * Load typed url */ - void loadDigitedUrl(); + void loadTypedUrl(); void showRSSInfo(const QPoint &); @@ -132,11 +132,15 @@ protected: void paintEvent(QPaintEvent *event); void keyPressEvent(QKeyEvent *event); void focusInEvent(QFocusEvent *event); + void focusOutEvent(QFocusEvent *event); void dropEvent(QDropEvent *event); void mouseDoubleClickEvent(QMouseEvent *); void contextMenuEvent(QContextMenuEvent *event); void resizeEvent(QResizeEvent *); +Q_SIGNALS: + void focusIn(); + private: /** * Updates right icon position, given its number in the right icons list |