Subversion Repositories DevTools

Rev

Rev 2263 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2263 Rev 2265
Line 235... Line 235...
235
	 *	When we have a batch size (and so we batch), then we may need to
235
	 *	When we have a batch size (and so we batch), then we may need to
236
	 *	start a new batch.
236
	 *	start a new batch.
237
	 */
237
	 */
238
	if ( m_batchSize )
238
	if ( m_batchSize )
239
	{
239
	{
240
		if ( ++m_batchCount >= m_batchSize )
240
		if ( m_batchCount++ >= m_batchSize )
241
		{
241
		{
242
			close();
242
			close();
243
			m_batchCount = 0;
243
			m_batchCount = 0;
244
			++m_batchNumber;
244
			++m_batchNumber;
245
			open();
245
			open();