diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-08 02:45:11 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-08 02:45:11 +0000 |
commit | 475d10e3bded459e33bcd71d40286ac381571469 (patch) | |
tree | 0b6c549b954de6ba122abfc2a11bbd0400a74b42 /cpp/demo/Ice/MFC/server/LogI.h | |
parent | clean up MFC demo. Fix bug with the status bar. (diff) | |
download | ice-475d10e3bded459e33bcd71d40286ac381571469.tar.bz2 ice-475d10e3bded459e33bcd71d40286ac381571469.tar.xz ice-475d10e3bded459e33bcd71d40286ac381571469.zip |
Fixed bug with Log implementation.
Diffstat (limited to 'cpp/demo/Ice/MFC/server/LogI.h')
-rw-r--r-- | cpp/demo/Ice/MFC/server/LogI.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cpp/demo/Ice/MFC/server/LogI.h b/cpp/demo/Ice/MFC/server/LogI.h index 5ac80a9f637..587b0874818 100644 --- a/cpp/demo/Ice/MFC/server/LogI.h +++ b/cpp/demo/Ice/MFC/server/LogI.h @@ -2,8 +2,8 @@ // // Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. // -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. +// This copy of Ice-E is licensed to you under the terms described in the +// ICEE_LICENSE file included in this distribution. // // ********************************************************************** @@ -22,12 +22,14 @@ public: virtual void error(const std::string&); void message(const std::string&); - void setControl(CEdit*); + void setHandle(HWND); private: + void post(const std::string&); + std::string _buffer; - CEdit* _log; + HWND _hwnd; }; typedef IceUtil::Handle<LogI> LogIPtr; |