~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to knewstuff/knewstuff3/core/security.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-03-03 00:25:28 UTC
  • mfrom: (1.14.15)
  • Revision ID: package-import@ubuntu.com-20120303002528-chhwyfluldkicy5k
Tags: 4:4.8.1-0ubuntu1
* New upstream release
  - Update symbol files

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
    << "--no-tty"
78
78
    << "--with-colon"
79
79
    << "--list-keys";
80
 
    connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)),
81
 
            this, SLOT(slotFinished(int, QProcess::ExitStatus)));
 
80
    connect(m_process, SIGNAL(finished(int,QProcess::ExitStatus)),
 
81
            this, SLOT(slotFinished(int,QProcess::ExitStatus)));
82
82
    connect(m_process, SIGNAL(readyReadStandardOutput()),
83
83
            this, SLOT(slotReadyReadStandardOutput()));
84
84
    m_process->start();
103
103
    << "--no-tty"
104
104
    << "--with-colon"
105
105
    << "--list-secret-keys";
106
 
    connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)),
107
 
            this, SLOT(slotFinished(int, QProcess::ExitStatus)));
 
106
    connect(m_process, SIGNAL(finished(int,QProcess::ExitStatus)),
 
107
            this, SLOT(slotFinished(int,QProcess::ExitStatus)));
108
108
    connect(m_process, SIGNAL(readyReadStandardOutput()),
109
109
            this, SLOT(slotReadyReadStandardOutput()));
110
110
    m_process->start();
278
278
    << "--verify"
279
279
    << f.path() + "/signature"
280
280
    << m_fileName;
281
 
    connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)),
282
 
            this, SLOT(slotFinished(int, QProcess::ExitStatus)));
 
281
    connect(m_process, SIGNAL(finished(int,QProcess::ExitStatus)),
 
282
            this, SLOT(slotFinished(int,QProcess::ExitStatus)));
283
283
    connect(m_process, SIGNAL(readyReadStandardOutput()),
284
284
            this, SLOT(slotReadyReadStandardOutput()));
285
285
    m_process->start();
364
364
    << "-o"
365
365
    << f.path() + "/signature"
366
366
    << m_fileName;
367
 
    connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)),
368
 
            this, SLOT(slotFinished(int, QProcess::ExitStatus)));
 
367
    connect(m_process, SIGNAL(finished(int,QProcess::ExitStatus)),
 
368
            this, SLOT(slotFinished(int,QProcess::ExitStatus)));
369
369
    connect(m_process, SIGNAL(readyReadStandardOutput()),
370
370
            this, SLOT(slotReadyReadStandardOutput()));
371
371
    m_runMode = Sign;