Send numeric status without translation

This commit is contained in:
Thomas Piccirello 2018-12-10 23:39:22 -05:00
parent 718f66e6a2
commit 7f349732ee
3 changed files with 25 additions and 17 deletions

View file

@ -44,10 +44,10 @@ namespace BitTorrent
public:
enum Status
{
NotContacted,
Working,
Updating,
NotWorking
NotContacted = 1,
Working = 2,
Updating = 3,
NotWorking = 4
};
TrackerEntry(const QString &url);