diff options
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r-- | src/urlbar.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp index 9be6bca0..4a599463 100644 --- a/src/urlbar.cpp +++ b/src/urlbar.cpp @@ -34,8 +34,7 @@ UrlBar::UrlBar(KHistoryComboBox *parent) // add every item to history connect( this, SIGNAL( activated( const QString& )), this, SLOT( addToHistory( const QString& ))); - - connect( this, SIGNAL( activated(int) ), this, SLOT( prova() ) ); + webViewIconChanged(); } @@ -92,10 +91,3 @@ QLinearGradient UrlBar::generateGradient(const QColor &color) const gradient.setColorAt(1, m_defaultBaseColor); return gradient; } - - -void UrlBar::prova() -{ - m_lineEdit->selectAll(); -} - |