summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-16 18:59:42 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-16 18:59:42 +0000
commit5afb87100a0f8b39c7d55e2e051ecf19a4af4ced (patch)
treeca1e23984c3e082a48198f2fe81b8a25991cb9ea
parent2a6554fc18eec7145a3c92bec745f669b5162bcb (diff)
downloadATCD-5afb87100a0f8b39c7d55e2e051ecf19a4af4ced.tar.gz
.
-rw-r--r--TAO/examples/Borland/ChatClientWnd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/examples/Borland/ChatClientWnd.cpp b/TAO/examples/Borland/ChatClientWnd.cpp
index 5a841a5407f..5a4f2f3dae3 100644
--- a/TAO/examples/Borland/ChatClientWnd.cpp
+++ b/TAO/examples/Borland/ChatClientWnd.cpp
@@ -68,7 +68,7 @@ void __fastcall TChatClientWindow::WMMessageReceived (TMessage& Message)
{
String* str = (String*)Message.WParam;
for (int i = 1; i <= str->Length (); i++)
- if (std::isspace ( (*str)[i]))
+ if (isspace ((*str)[i]))
(*str)[i] = ' ';
OutputMemo->Lines->Append (str->Trim ());
delete str;