X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin4_src%2FServer%2FCClient.cpp;h=9fe806e37a941f97ae9690865f8a8d293d089bfa;hb=0868c6e02b76236ea70a6daa232b3c373f61e131;hp=f61ca31a730b0ee043469857ca7efabbe30c0300;hpb=8ae0b1147e613573a45fcd8e6f2f6af2aeff54ac;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin4_src/Server/CClient.cpp b/Usermode/Applications/axwin4_src/Server/CClient.cpp index f61ca31a..9fe806e3 100644 --- a/Usermode/Applications/axwin4_src/Server/CClient.cpp +++ b/Usermode/Applications/axwin4_src/Server/CClient.cpp @@ -32,10 +32,13 @@ CWindow* CClient::GetWindow(int ID) void CClient::SetWindow(int ID, CWindow* window) { + _SysDebug("SetWindow(ID=%i,window=%p)", ID, window); if( m_windows[ID] ) { delete m_windows[ID]; } + _SysDebug("SetWindow - Set", ID, window); m_windows[ID] = window; + _SysDebug("SetWindow - END"); } void CClient::HandleMessage(CDeserialiser& message)