From e89d97353161576ca111817aff93299d10d73290 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Wed, 4 Mar 2026 13:01:39 +0100 Subject: [PATCH] fix: crash reported in uploaded bug reports EGGComponentError: Property cannot be translated. Add TP_GlobalIgnoreClassProperty(TComboBoxEx,'Text') to your source code ... --- packages/Delphi12.3/heidisql.dpr | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/Delphi12.3/heidisql.dpr b/packages/Delphi12.3/heidisql.dpr index b9d721e6..f25ac703 100644 --- a/packages/Delphi12.3/heidisql.dpr +++ b/packages/Delphi12.3/heidisql.dpr @@ -6,6 +6,7 @@ uses System.SysUtils, Vcl.Dialogs, Vcl.Controls, + Vcl.ComCtrls, Winapi.Windows, main in '..\..\source\main.pas' {MainForm}, about in '..\..\source\about.pas' {AboutBox}, @@ -96,6 +97,7 @@ begin // First time translation via dxgettext. // Issue #3064: Ignore TFont, so "Default" on mainform for WinXP users does not get broken. gnugettext.TP_GlobalIgnoreClass(TFont); + gnugettext.TP_GlobalIgnoreClass(TComboBoxEx); // Enable padding in customized tooltips HintWindowClass := TExtHintWindow;