pocorall.SCM_Notifier.MainForm.UpdateFolderStatus C# (CSharp) Method

UpdateFolderStatus() private method

Executed on working thread
private UpdateFolderStatus ( ScmRepository folder ) : void
folder ScmRepository
return void
        private void UpdateFolderStatus(ScmRepository folder)
        {
            SafeInvoke (new SetStatusBarTextMethod (SetStatusBarText), new object[] {"Checking '" + folder.Path + "'..."});
            DateTime statusTime = DateTime.Now;
            if (sessionEndInProgress) return;		// Need to avoid error on svn.exe invoking
            ScmRepositoryStatus status = folder.GetStatus();
            SafeInvoke (new UpdateListViewMethod (UpdateListView), new object[] {folder, status, statusTime});
        }
MainForm