~ubuntu-branches/ubuntu/raring/plasma-mobile/raring-proposed

« back to all changes in this revision

Viewing changes to applications/webbrowser/src/view.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-07-17 12:04:43 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120717120443-q3ig9u2fnltx67yg
Tags: 2.0+git2012071701-0ubuntu1
* New upstream snapshot
* Remove build-dep on kde-runtime-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
            // Note that "urlInput" is defined as objectName in the QML file
154
154
            m_urlInput = rootObject()->findChild<QDeclarativeItem*>("urlInput");
155
155
            if (m_urlInput) {
156
 
                connect(m_urlInput, SIGNAL(urlEntered(const QString&)),
157
 
                        this, SLOT(onUrlEntered(const QString&)));
 
156
                connect(m_urlInput, SIGNAL(urlEntered(QString)),
 
157
                        this, SLOT(onUrlEntered(QString)));
158
158
                connect(m_urlInput, SIGNAL(urlFilterChanged()),
159
159
                        this, SLOT(urlFilterChanged()));
160
160
            } else {
180
180
void View::urlFilterChanged()
181
181
{
182
182
    QString newFilter = m_urlInput->property("urlFilter").toString();
183
 
    kDebug() << "Filtering completion" << newFilter;
 
183
    //kDebug() << "Filtering completion" << newFilter;
184
184
    m_completionModel->populate();
185
185
    m_completionModel->setFilter(newFilter);
186
186
}