diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-05-28 12:08:45 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-05-28 12:08:45 +0200 |
commit | f4054a4adf480b4960f6925c3f5e65a919ff3f6e (patch) | |
tree | 3e00a232e9ee8ef93f6a7ee2b970cad6bdea0c3d /src/urlbar.cpp | |
parent | Removed QDialog instances (diff) | |
parent | cosmetic (diff) | |
download | rekonq-f4054a4adf480b4960f6925c3f5e65a919ff3f6e.tar.xz |
Fixed mainwindow conflicts
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r-- | src/urlbar.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp index e2756aa6..e1971ced 100644 --- a/src/urlbar.cpp +++ b/src/urlbar.cpp @@ -81,6 +81,24 @@ UrlBar::~UrlBar() } +void UrlBar::selectAll() const +{ + lineEdit()->selectAll(); +} + + +KUrl UrlBar::url() const +{ + return m_currentUrl; +} + + +KLineEdit *UrlBar::lineEdit() const +{ + return m_lineEdit; +} + + void UrlBar::setupLineEdit() { // Make m_lineEdit background transparent |