Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shellext: provide new error function in Thgstatus class

uses the new error command available on the rpc server

Changeset 2c02ab5c6f1b

Parent 532f8319626b

by Adrian Buehlmann

Changes to one file · Browse files at 2c02ab5c6f1b Showing diff from parent 532f8319626b Diff from another changeset...

 
30
31
32
 
 
 
33
34
35
 
30
31
32
33
34
35
36
37
38
@@ -30,6 +30,9 @@
  static int remove(const std::string& path) {   return SendRequest("remove|" + path);   } + static int error(const std::string& text) { + return SendRequest("error|" + text); + }  };    #endif