OSDN Git Service

PATCH: [ 1414199 ] Fix outdated comment on DirView.cpp :: NumToStr
authorPerry Rapp <elsapo@users.sourceforge.net>
Sat, 28 Jan 2006 11:23:12 +0000 (11:23 +0000)
committerPerry Rapp <elsapo@users.sourceforge.net>
Sat, 28 Jan 2006 11:23:12 +0000 (11:23 +0000)
  Src: DirView.cpp

Src/Changes.txt
Src/DirView.cpp

index 94fbc74..1dfa23d 100644 (file)
@@ -9,6 +9,8 @@
   Src: ChildFrm.cpp
  PATCH: [ 1414196 ] Delete useless CChildFrame::OnNotify method
   Src: ChildFrm.cpp ChildFrm.h
+ PATCH: [ 1414199 ] Fix outdated comment on DirView.cpp :: NumToStr
+  Src: DirView.cpp
 
 2006-01-26 Kimmo
  PATCH: [ 1413230 ] Use HtmlHelp API to open help
index f9fdd78..358a84e 100644 (file)
@@ -584,9 +584,8 @@ void CDirView::HeaderContextMenu(CPoint point, int /*i*/)
                AfxGetMainWnd());
 }      
 
-/// Make a string out of a number
-// TODO: Ought to introduce commas every three digits, except this is locale-specific
-// How to do this with locale sensitivity ?
+/** @brief Convert number to string, with commas
+between digits in locale-appropriate manner */
 CString NumToStr(int n)
 {
        CString s = locality::NumToLocaleStr(n);