diff options
author | fcolin | 2007-02-01 13:03:12 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:03:12 +0000 |
commit | 3641d48cb887cf7267a6e138c1b2827510d2df5d (patch) | |
tree | c143e1286148a03fd79024fa8cb444981eaed1a7 | |
parent | eb9b06f1074051aecb940001dc2c9db4ee8c7863 (diff) | |
download | ivy-cplusplus-3641d48cb887cf7267a6e138c1b2827510d2df5d.zip ivy-cplusplus-3641d48cb887cf7267a6e138c1b2827510d2df5d.tar.gz ivy-cplusplus-3641d48cb887cf7267a6e138c1b2827510d2df5d.tar.bz2 ivy-cplusplus-3641d48cb887cf7267a6e138c1b2827510d2df5d.tar.xz |
Utilisateur : Fcolin Date : 9/10/01 Heure : 12:12 Archivé dans $/Ivy Commentaire: on poste un message synchro si la file est vide (vss 7)
-rw-r--r-- | Bus/Ivy/IvySynchroWnd.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bus/Ivy/IvySynchroWnd.cxx b/Bus/Ivy/IvySynchroWnd.cxx index 33059d8..e2b2338 100644 --- a/Bus/Ivy/IvySynchroWnd.cxx +++ b/Bus/Ivy/IvySynchroWnd.cxx @@ -103,7 +103,7 @@ LRESULT IvySynchroWnd::OnIvyCB(WPARAM wParam, LPARAM lParam) void IvySynchroWnd::PostIvyCB( IvySynchronousCallback *cb )
{
EnterCriticalSection( &m_CritSection );
- if ( !m_synchro->callbacklist.empty() )
+ if ( m_synchro->callbacklist.empty() )
ASSERT(PostMessage(m_synchro->m_hWnd, WM_IVY_CB, 0, 0 ));
m_synchro->callbacklist.push_back( cb );
LeaveCriticalSection( &m_CritSection );
|