~ubuntu-branches/debian/sid/kde-baseapps/sid

« back to all changes in this revision

Viewing changes to konq-plugins/domtreeviewer/domtreewindow.cpp

  • Committer: Package Import Robot
  • Author(s): Modestas Vainius, Eshat Cakar, Pino Toscano
  • Date: 2012-06-09 22:18:08 UTC
  • mfrom: (4.2.1) (6.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20120609221808-h1l0ekd5qmb8nefr
Tags: 4:4.8.4-1
* New upstream release.

[ Eshat Cakar ]
* Add watch file.
* Bump kde-sc-dev-latest build dependency to version 4:4.8.4.
* Update installed files.

[ Pino Toscano ]
* Move files of the konqueror documentation from kde-baseapps-data to
  konqueror itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
 
110
110
    // allow the view to change the statusbar and caption
111
111
#if 0
112
 
    connect(m_view, SIGNAL(signalChangeStatusbar(const QString&)),
113
 
            this,   SLOT(changeStatusbar(const QString&)));
114
 
    connect(m_view, SIGNAL(signalChangeCaption(const QString&)),
115
 
            this,   SLOT(changeCaption(const QString&)));
 
112
    connect(m_view, SIGNAL(signalChangeStatusbar(QString)),
 
113
            this,   SLOT(changeStatusbar(QString)));
 
114
    connect(m_view, SIGNAL(signalChangeCaption(QString)),
 
115
            this,   SLOT(changeCaption(QString)));
116
116
#endif
117
 
    connect(view(), SIGNAL(htmlPartChanged(KHTMLPart *)),
118
 
                SLOT(slotHtmlPartChanged(KHTMLPart *)));
 
117
    connect(view(), SIGNAL(htmlPartChanged(KHTMLPart*)),
 
118
                SLOT(slotHtmlPartChanged(KHTMLPart*)));
119
119
 
120
 
    ManipulationCommand::connect(SIGNAL(error(int, const QString &)),
121
 
                                this, SLOT(addMessage(int, const QString &)));
 
120
    ManipulationCommand::connect(SIGNAL(error(int,QString)),
 
121
                                this, SLOT(addMessage(int,QString)));
122
122
 
123
123
    infopanel_ctx = createInfoPanelAttrContextMenu();
124
124
    domtree_ctx = createDOMTreeViewContextMenu();
401
401
 
402
402
    part_manager = p->manager();
403
403
 
404
 
    connect(part_manager, SIGNAL(activePartChanged(KParts::Part *)),
405
 
        SLOT(slotActivePartChanged(KParts::Part *)));
406
 
    connect(part_manager, SIGNAL(partRemoved(KParts::Part *)),
407
 
        SLOT(slotPartRemoved(KParts::Part *)));
 
404
    connect(part_manager, SIGNAL(activePartChanged(KParts::Part*)),
 
405
        SLOT(slotActivePartChanged(KParts::Part*)));
 
406
    connect(part_manager, SIGNAL(partRemoved(KParts::Part*)),
 
407
        SLOT(slotPartRemoved(KParts::Part*)));
408
408
 
409
409
    // set up browser extension connections
410
410
    connect(p, SIGNAL(docCreated()), SLOT(slotClosePart()));