Mercurial > hg > easyhg
comparison mainwindow.cpp @ 40:42f3cb49373b
hg glog --verbose made history list very slow with 30000 files, so removed --verbose option.
author | Jari Korhonen <jtkorhonen@gmail.com> |
---|---|
date | Wed, 23 Jun 2010 21:12:46 +0300 |
parents | 4c42d3f5065d |
children | 94bbc4b30b2a |
comparison
equal
deleted
inserted
replaced
39:3fa4803ecf44 | 40:42f3cb49373b |
---|---|
117 void MainWindow::hgLog() | 117 void MainWindow::hgLog() |
118 { | 118 { |
119 if (runningAction == ACT_NONE) | 119 if (runningAction == ACT_NONE) |
120 { | 120 { |
121 QStringList params; | 121 QStringList params; |
122 params << "glog" << "--verbose"; | 122 params << "glog"; |
123 | 123 |
124 runner -> startProc(getHgBinaryName(), workFolderPath, params); | 124 runner -> startProc(getHgBinaryName(), workFolderPath, params); |
125 runningAction = ACT_LOG; | 125 runningAction = ACT_LOG; |
126 } | 126 } |
127 } | 127 } |