VCS: Correct timeout values.

This commit is contained in:
Friedemann Kleint
2010-01-05 16:41:26 +01:00
parent f093025ff3
commit 469ee5b40c
3 changed files with 6 additions and 6 deletions

View File

@@ -46,8 +46,8 @@ struct CVSSettings
void fromSettings(QSettings *);
void toSettings(QSettings *) const;
inline int timeOutMS() const { return timeOutS * 10000; }
inline int longTimeOutMS() const { return timeOutS * 100000; }
inline int timeOutMS() const { return timeOutS * 1000; }
inline int longTimeOutMS() const { return timeOutS * 10000; }
// Add common options to the command line
QStringList addOptions(const QStringList &args) const;