浏览代码

Fix to querywindow.pas

Moved line 1656 below RemovePreviousResultTabs to fix exceptions in
Win32
fschetterer 11 年之前
父节点
当前提交
7926ba315f
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      querywindow.pas

+ 2 - 1
querywindow.pas

@@ -1653,8 +1653,9 @@ begin
     OnCommit:= nil;
   end;
   FIBConnection.Close;
-  OutputTabsList.Free;
+  //   OutputTabsList.Free;  causes exception, still used in RemovePreviousResultTabs
   RemovePreviousResultTabs;
+  OutputTabsList.Free;
   CloseAction:= caFree;
 end;