[Quantproject-developers] QuantDownloader/Downloader/OpenTickDownloader BarsDownloader.cs, 1.1, 1.
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-07-20 20:30:12
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3814/Downloader/OpenTickDownloader Modified Files: BarsDownloader.cs Log Message: Fixed code for non present event handlers Index: BarsDownloader.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/OpenTickDownloader/BarsDownloader.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BarsDownloader.cs 9 Jul 2008 22:10:22 -0000 1.1 --- BarsDownloader.cs 20 Jul 2008 20:30:06 -0000 1.2 *************** *** 137,141 **** object sender , NewMessageEventArgs eventArgs ) { ! this.NewMessage( this , eventArgs ); } private void initializeBarQueueFiller() --- 137,142 ---- object sender , NewMessageEventArgs eventArgs ) { ! if ( this.NewMessage != null ) ! this.NewMessage( this , eventArgs ); } private void initializeBarQueueFiller() |