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

shellext: fix usage of hgtk.cmd when hgtk.exe not found

gcc should have flagged a warning, oh well.

Changeset 46a67d78cf98

Parent 60c7136dbb61

by Steve Borho

Changes to one file · Browse files at 46a67d78cf98 Showing diff from parent 60c7136dbb61 Diff from another changeset...

 
377
378
379
380
 
381
382
383
 
377
378
379
 
380
381
382
383
@@ -377,7 +377,7 @@
  WIN32_FIND_DATAA data;   HANDLE hfind = FindFirstFileA(hgcmd.c_str(), &data);   if (hfind == INVALID_HANDLE_VALUE) - std::string hgcmd = Quote(dir + "\\hgtk.cmd"); + hgcmd = Quote(dir + "\\hgtk.cmd");   else   FindClose(hfind);