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

shellext: report handler init errors to rpc server

Changeset ad76bdbc5ceb

Parent 2c02ab5c6f1b

by Adrian Buehlmann

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

 
17
18
19
 
20
21
22
 
51
52
53
54
55
 
 
 
56
57
58
 
17
18
19
20
21
22
23
 
52
53
54
 
 
55
56
57
58
59
60
@@ -17,6 +17,7 @@
 #include "stdafx.h"    #include "InitStatus.h" +#include "Thgstatus.h"      InitStatus& InitStatus::inst() @@ -51,8 +52,9 @@
  if (missing.empty())   return "";   - std::string res = "InitStatus: error: uninitialized handlers: "; - res += missing; + std::string reason = "uninitialized handlers: " + missing; + Thgstatus::error(reason); + std::string res = "InitStatus: error: " + reason;   TDEBUG_TRACE("***** " << res);   return res;  }