~ubuntu-branches/ubuntu/quantal/kate/quantal-proposed

« back to all changes in this revision

Viewing changes to kate/plugins/xmlcheck/plugin_katexmlcheck.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 13:28:06 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: package-import@ubuntu.com-20111214132806-aa2uf6ri5w2p8ak3
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    connect(a, SIGNAL(triggered()), this, SLOT(slotValidate()));
91
91
    // TODO?:
92
92
    //(void)  new KAction ( i18n("Indent XML"), KShortcut(), this,
93
 
    //  SLOT( slotIndent() ), actionCollection(), "xml_indent" );
 
93
    //  SLOT(slotIndent()), actionCollection(), "xml_indent" );
94
94
 
95
95
    listview->setFocusPolicy(Qt::NoFocus);
96
96
    listview->addColumn(i18n("#"), -1);
101
101
    listview->addColumn(i18n("Message"), -1);
102
102
    listview->setAllColumnsShowFocus(true);
103
103
    listview->setResizeMode(Q3ListView::LastColumn);
104
 
    connect(listview, SIGNAL(clicked(Q3ListViewItem *)), SLOT(slotClicked(Q3ListViewItem *)));
 
104
    connect(listview, SIGNAL(clicked(Q3ListViewItem*)), SLOT(slotClicked(Q3ListViewItem*)));
105
105
 
106
106
/* TODO?: invalidate the listview when document has changed
107
107
   Kate::View *kv = application()->activeMainWindow()->activeView();
113
113
*/
114
114
 
115
115
    m_proc = new KProcess();
116
 
    connect(m_proc, SIGNAL(finished (int, QProcess::ExitStatus)), this, SLOT(slotProcExited (int, QProcess::ExitStatus)));
 
116
    connect(m_proc, SIGNAL(finished(int,QProcess::ExitStatus)), this, SLOT(slotProcExited(int,QProcess::ExitStatus)));
117
117
    // we currently only want errors:
118
118
    m_proc->setOutputChannelMode(KProcess::OnlyStderrChannel);
119
119