summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/MFC/server/LogI.h
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-08-08 02:45:11 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-08-08 02:45:11 +0000
commit475d10e3bded459e33bcd71d40286ac381571469 (patch)
tree0b6c549b954de6ba122abfc2a11bbd0400a74b42 /cpp/demo/Ice/MFC/server/LogI.h
parentclean up MFC demo. Fix bug with the status bar. (diff)
downloadice-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.h10
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;