Linux64/GTK2 remove DirectoryService facility while bug is not solved.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1434 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
Joshy
2011-01-08 22:49:43 +00:00
parent 7d616b77c6
commit d74dbbbe55

View File

@ -43,7 +43,11 @@ begin
GeckoEngineDirectoryService:=IDirectoryServiceProvider.Create;
NS_GetServiceManager(ServiceManager);
ServiceManager.GetService(NS_DIRECTORY_SERVICE_CID, DirectoryService,DirectoryService);
{$IFDEF LCLGTK2 AND defined(cpux86_64)}
//No register meanwhile the DirectoryService bug in Linux64 is not solved.
{$ELSE}
DirectoryService.RegisterProvider(GeckoEngineDirectoryService);
{$ENDIF}
Inc(sInitCount);
end;