projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50a2a35
)
No changes, just correct a wrong trailing comment in #else.
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Sun, 13 Mar 2011 13:53:51 +0000
(13:53 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Sun, 13 Mar 2011 13:53:51 +0000
(13:53 +0000)
The test meaning was inverted.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67180
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/string.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/string.cpp
b/src/common/string.cpp
index e5db843659ab227454fe1ce824505428a1fe694b..fa7bb0c2f84d5ca90f537972d883a82c81ca79d2 100644
(file)
--- a/
src/common/string.cpp
+++ b/
src/common/string.cpp
@@
-1846,7
+1846,7
@@
wxString wxString::FromCDouble(double val)
wxSTD ostringstream os;
os << val;
return os.str();
-#else // wxUSE_STD_IOSTREAM
+#else //
!
wxUSE_STD_IOSTREAM
// Can't use iostream locale support, fall back to the manual method
// instead.
wxString s = FromDouble(val);