1 #include "dialogimpl.h"
3 DialogImpl::DialogImpl( QWidget
* parent
, Qt::WFlags f
)
10 void DialogImpl::on_pushShow_clicked(bool checked
)
18 str
= lineLine
->text();
22 list
= str
.split (":");
27 process
= new QProcess
;
28 cmd
= QString ("gvim ") + str
;
29 if (lineNum
.length() > 0)
30 cmd
+= " +" + lineNum
;
32 printf ("%s\n", cmd
.toStdString().c_str ());
33 lineLine
->setText ("");