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

shellext: bool compromise

Changeset 887f8ef3312a

Parent dc7a309ca203

by Steve Borho

Changes to one file · Browse files at 887f8ef3312a Showing diff from parent dc7a309ca203 Diff from another changeset...

 
31
32
33
34
 
35
36
37
 
42
43
44
45
 
46
47
 
48
49
50
 
31
32
33
 
34
35
36
37
 
42
43
44
 
45
46
 
47
48
49
50
@@ -31,7 +31,7 @@
 {  public:   std::string path; - BOOL isdir; + bool isdir;   std::string basedir;   std::string hgroot;   @@ -42,9 +42,9 @@
 };     -BOOL hasHgDir(std::string const& path) +bool hasHgDir(std::string const& path)  { - return PathIsDirectory((path + "\\.hg").c_str()); + return PathIsDirectory((path + "\\.hg").c_str()) != 0;  }