commitmonitor Code
Monitor your SVN repositories and notifies you on new commits
Brought to you by:
steveking
changed | /trunk/src/AppUtils.cpp |
changed | /trunk/src/CommitMonitor.cpp |
changed | /trunk/src/HiddenWindow.cpp |
changed | /trunk/src/HiddenWindow.h |
changed | /trunk/src/MainDlg.cpp |
changed | /trunk/src/MainDlg.h |
changed | /trunk/src/SVN.cpp |
changed | /trunk/src/StatusBarMsgWnd.cpp |
changed | /trunk/src/StatusBarMsgWnd.h |
--- a/trunk/src/AppUtils.cpp +++ b/trunk/src/AppUtils.cpp @@ -57,7 +57,7 @@ { wstring result; wstring::size_type pos = 0; - while(true) + for ( ; ; ) // while (true) { wstring::size_type next = str.find(toreplace, pos); result.append(str, pos, next-pos);