コード例 #1
0
ファイル: rssicon.cpp プロジェクト: Alternate20/qupzilla
void RssIcon::iconClicked()
{
    if (!m_view) {
        return;
    }

    RSSWidget* rss = new RSSWidget(m_view, parentWidget());
    rss->showAt(parentWidget());
}
コード例 #2
0
ファイル: locationbar.cpp プロジェクト: Haommin/qupzilla
void LocationBar::rssIconClicked()
{
    RSSWidget* rss = new RSSWidget(m_webView, this);
    rss->showAt(this);
}