From 6ac52567af4dd1bda262beb6bc70a3682fd14b62 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 16 Oct 2014 12:27:50 +0000 Subject: [PATCH] Call more useful online help by "Help" button on table editor --- source/table_editor.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/table_editor.pas b/source/table_editor.pas index e92b2f52..1f4257cf 100644 --- a/source/table_editor.pas +++ b/source/table_editor.pas @@ -2275,7 +2275,7 @@ end; procedure TfrmTableEditor.btnHelpClick(Sender: TObject); begin // Help button - Mainform.CallSQLHelpWithKeyword('CREATE TABLE'); + Help(Self, 'createtable'); end;