bgarrels / python4delphi

Automatically exported from code.google.com/p/python4delphi
0 stars 0 forks source link

Bug: unneeded line in GUIOutput #28

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This is bug: line with //AT must not exist. If it does, output gives duplicate 
line with OnSendUniData.

procedure TPythonGUIInputOutput.SendUniData(const Data: UnicodeString);
begin
  //inherited; //AT commented
  if Assigned(FOnSendUniData) then
    inherited
  else
    DisplayString( Data );
end;

Original issue reported on code.google.com by ato...@gmail.com on 19 Dec 2013 at 3:25

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r101.

Original comment by pyscripter on 20 Mar 2015 at 8:29

GoogleCodeExporter commented 9 years ago
Thanks!

Original comment by pyscripter on 20 Mar 2015 at 8:30