summaryrefslogtreecommitdiff
path: root/Bus/Ivy/IvySynchroWnd.cxx
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:03:12 +0000
committerfcolin2007-02-01 13:03:12 +0000
commit3641d48cb887cf7267a6e138c1b2827510d2df5d (patch)
treec143e1286148a03fd79024fa8cb444981eaed1a7 /Bus/Ivy/IvySynchroWnd.cxx
parenteb9b06f1074051aecb940001dc2c9db4ee8c7863 (diff)
downloadivy-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)
Diffstat (limited to 'Bus/Ivy/IvySynchroWnd.cxx')
-rw-r--r--Bus/Ivy/IvySynchroWnd.cxx2
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 );