From 6e64f6d1fca4c63d280b8fc21a0bcac95712a689 Mon Sep 17 00:00:00 2001 From: juha Date: Sun, 19 Feb 2012 09:58:40 +0000 Subject: [PATCH] LazSvn package: restore Application.QueueAsyncCalls git-svn-id: trunk@35471 - --- components/lazsvnpkg/svnlogform.pas | 3 +-- components/lazsvnpkg/svnstatusform.pas | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/components/lazsvnpkg/svnlogform.pas b/components/lazsvnpkg/svnlogform.pas index 4062d1e8f2..e03375076d 100644 --- a/components/lazsvnpkg/svnlogform.pas +++ b/components/lazsvnpkg/svnlogform.pas @@ -206,8 +206,7 @@ procedure TSVNLogFrm.FormShow(Sender: TObject); begin ChangeCursor(crHourGlass); Caption := Format(rsLazarusSVNLog, [RepositoryPath]); -// Application.QueueAsyncCall(@Execute, 0); - Execute(0); + Application.QueueAsyncCall(@Execute, 0); end; procedure TSVNLogFrm.LogListViewSelectItem(Sender: TObject; Item: TListItem; diff --git a/components/lazsvnpkg/svnstatusform.pas b/components/lazsvnpkg/svnstatusform.pas index 25dff543ff..b9befa9d34 100644 --- a/components/lazsvnpkg/svnstatusform.pas +++ b/components/lazsvnpkg/svnstatusform.pas @@ -102,8 +102,7 @@ begin Caption := Format('%s - %s...', [RepositoryPath, rsLazarusSVNCommit]); CommitMsgHistoryLabel.Caption:=rsCommitMsgHistory; CommitMsgLabel.Caption:=rsCommitMsg; -// Application.QueueAsyncCall(@Initialize, 0); - Initialize(0); + Application.QueueAsyncCall(@Initialize, 0); end; procedure TSVNStatusFrm.Initialize(Data: PtrInt);