summaryrefslogtreecommitdiff
path: root/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:03:12 +0000
committerfcolin2007-02-01 13:03:12 +0000
commitd3034a30db643cefc90b690a422b98dd7b2a0713 (patch)
tree1786ec52a36553d67000805f37c767b8dc60a6ed /Ivy
parentfbb3f93fb72791aae6c9346d55a42e97b8a605f1 (diff)
downloadivy-cplusplus-d3034a30db643cefc90b690a422b98dd7b2a0713.zip
ivy-cplusplus-d3034a30db643cefc90b690a422b98dd7b2a0713.tar.gz
ivy-cplusplus-d3034a30db643cefc90b690a422b98dd7b2a0713.tar.bz2
ivy-cplusplus-d3034a30db643cefc90b690a422b98dd7b2a0713.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 'Ivy')
-rw-r--r--Ivy/IvySynchroWnd.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ivy/IvySynchroWnd.cxx b/Ivy/IvySynchroWnd.cxx
index 33059d8..e2b2338 100644
--- a/Ivy/IvySynchroWnd.cxx
+++ b/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 );