Skip to content
Snippets Groups Projects
Commit 469ee5b4 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

VCS: Correct timeout values.

parent f093025f
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -94,8 +94,8 @@ public:
Settings settings() const;
inline int timeOutS() const { return m_settings.timeOutS; }
inline int timeOutMS() const { return m_settings.timeOutS * 10000; }
inline int longTimeOutMS() const { return m_settings.timeOutS * 100000; }
inline int timeOutMS() const { return m_settings.timeOutS * 1000; }
inline int longTimeOutMS() const { return m_settings.timeOutS * 10000; }
QString topLevel() const;
QString topLevelSymLinkTarget() const;
......
......@@ -47,8 +47,8 @@ struct SubversionSettings
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 authentication and (maybe future) options to the
// command line
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment