Guest User

Untitled

a guest
Jan 15th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void SaveAs::collectSnapshots( int index )
  2. {
  3.     Myboards::boards().at( index )->prepareSnapshot();
  4.     if ( index < Myboards::boards().count() )
  5.     {
  6.         qDebug() << "count" << Myboards::boards().count() << "current " << index  ;
  7.         QMetaObject::invokeMethod( this, "collectSnapshots", Qt::QueuedConnection, Q_ARG( int, index + 1 ) );
  8.     }
  9. }
Add Comment
Please, Sign In to add comment