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"/>
|
<Title Value="project1"/>
|
||||||
<ResourceType Value="res"/>
|
<ResourceType Value="res"/>
|
||||||
<UseXPManifest Value="True"/>
|
<UseXPManifest Value="True"/>
|
||||||
<Icon Value="0"/>
|
|
||||||
</General>
|
</General>
|
||||||
<VersionInfo>
|
<VersionInfo>
|
||||||
<StringTable ProductVersion=""/>
|
<StringTable ProductVersion=""/>
|
||||||
|
@ -323,7 +323,8 @@ begin
|
|||||||
if FConnection <> nil then begin
|
if FConnection <> nil then begin
|
||||||
wasConnected := FConnection.Connected;
|
wasConnected := FConnection.Connected;
|
||||||
Connected := false;
|
Connected := false;
|
||||||
end;
|
end else
|
||||||
|
wasConnected := false;
|
||||||
FConnection := AValue;
|
FConnection := AValue;
|
||||||
FContactsTable.Connection := FConnection;
|
FContactsTable.Connection := FConnection;
|
||||||
FEventsTable.Connection := FConnection;
|
FEventsTable.Connection := FConnection;
|
||||||
|
Reference in New Issue
Block a user