comparison hgrunner.cpp @ 122:c3e8342d2de9

* Further fix to incremental log (put new changesets on the correct end of the list!)
author Chris Cannam
date Mon, 29 Nov 2010 11:14:29 +0000
parents c92f5859c707
children 1f27f71a7034
comparison
equal deleted inserted replaced
121:6ce2ceb2c3a5 122:c3e8342d2de9
50 HgRunner::~HgRunner() 50 HgRunner::~HgRunner()
51 { 51 {
52 closeTerminal(); 52 closeTerminal();
53 if (m_proc) { 53 if (m_proc) {
54 m_proc->kill(); 54 m_proc->kill();
55 delete m_proc; 55 m_proc->deleteLater();
56 } 56 }
57 } 57 }
58 58
59 void HgRunner::requestAction(HgAction action) 59 void HgRunner::requestAction(HgAction action)
60 { 60 {