You've already forked lazarus-ccr
tvplanit: Fix uninitialized local variable in TZeosDatastore.SetConnection.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4765 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -9,7 +9,6 @@
|
||||
<Title Value="project1"/>
|
||||
<ResourceType Value="res"/>
|
||||
<UseXPManifest Value="True"/>
|
||||
<Icon Value="0"/>
|
||||
</General>
|
||||
<VersionInfo>
|
||||
<StringTable ProductVersion=""/>
|
||||
|
@ -323,7 +323,8 @@ begin
|
||||
if FConnection <> nil then begin
|
||||
wasConnected := FConnection.Connected;
|
||||
Connected := false;
|
||||
end;
|
||||
end else
|
||||
wasConnected := false;
|
||||
FConnection := AValue;
|
||||
FContactsTable.Connection := FConnection;
|
||||
FEventsTable.Connection := FConnection;
|
||||
|
Reference in New Issue
Block a user