comparison hgaction.h @ 113:5fc7b4fc77a8

* Better error handling/reporting; some futile changes to termios handling; avoid weirdly stretching panned view in panner
author Chris Cannam
date Fri, 26 Nov 2010 21:04:40 +0000
parents 0f039d3cc38e
children 78374cefa10f
comparison
equal deleted inserted replaced
112:4bd17f36d059 113:5fc7b4fc77a8
56 struct HgAction 56 struct HgAction
57 { 57 {
58 HGACTIONS action; 58 HGACTIONS action;
59 QString workingDir; 59 QString workingDir;
60 QStringList params; 60 QStringList params;
61 61 QString executable; // empty for normal Hg, but gets filled in by hgrunner
62 QString executable; // empty for normal Hg
63 62
64 HgAction() : action(ACT_NONE) { } 63 HgAction() : action(ACT_NONE) { }
65 64
66 HgAction(HGACTIONS _action, QString _wd, QStringList _params) : 65 HgAction(HGACTIONS _action, QString _wd, QStringList _params) :
67 action(_action), workingDir(_wd), params(_params) { } 66 action(_action), workingDir(_wd), params(_params) { }