~ubuntu-branches/ubuntu/quantal/kdeplasma-addons/quantal

« back to all changes in this revision

Viewing changes to applets/news/news.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:52 UTC
  • mfrom: (0.7.13)
  • Revision ID: package-import@ubuntu.com-20111215141752-np5msqi5czjpvtmq
Tags: 4:4.7.90-0ubuntu1
* new upstream beta release
* Remove kubuntu_04_kimpanel_disable_scim.diff now scim applet has gone
* Remove ibus bits from debian/rules
* Remove kimpanel packages
* Add build-dep on libdbusmenu-qt-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
    m_news->setDragToScroll(true);
108
108
    m_news->installEventFilter(this);
109
109
    m_news->setSizePolicy(QSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred));
110
 
    connect(m_news->page(), SIGNAL(linkClicked(const QUrl&)),
111
 
            this, SLOT(linkActivated(const QUrl&)));
 
110
    connect(m_news->page(), SIGNAL(linkClicked(QUrl)),
 
111
            this, SLOT(linkActivated(QUrl)));
112
112
    m_news->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
113
113
    m_layout->addItem(m_news);
114
114
 
233
233
    parent->addPage(widget, i18n("General"), icon());
234
234
    parent->addPage(fWidget, i18n("Feeds"), "application-rss+xml");
235
235
 
236
 
    connect(feedsUi.feedComboBox, SIGNAL(editTextChanged(const QString&)),
237
 
            this, SLOT(feedTextChanged(const QString&)));
 
236
    connect(feedsUi.feedComboBox, SIGNAL(editTextChanged(QString)),
 
237
            this, SLOT(feedTextChanged(QString)));
238
238
    connect(parent, SIGNAL(accepted()), this, SLOT(configAccepted()));
239
239
    connect(feedsUi.addFeed, SIGNAL(clicked()), this, SLOT(addFeed()));
240
240
    connect(feedsUi.removeFeed, SIGNAL(clicked()), this, SLOT(removeFeed()));