Changeset 1191
- Timestamp:
- 9/16/2009 2:20:07 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/eraser6/ShellExt/CtxMenu.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/ShellExt/CtxMenu.cpp
r1190 r1191 571 571 commandLine += L"\"-d=" + escapedItem + L"\" "; 572 572 else 573 commandLine += L"\" " + escapedItem + L"\" ";573 commandLine += L"\"-f=" + escapedItem + L"\" "; 574 574 } 575 575 } … … 678 678 //Escape the command line (= and , are special characters) 679 679 std::wstring escapedItem; 680 escapedItem.reserve( item.length());681 for (std::wstring::const_iterator i = item.begin(); i != item.end(); ++i)680 escapedItem.reserve(string.length()); 681 for (std::wstring::const_iterator i = string.begin(); i != string.end(); ++i) 682 682 { 683 683 if (wcschr(L"\\=,", *i))
Note: See TracChangeset
for help on using the changeset viewer.
