From 53bb473ba5f24175ac124098dac69df6ca3570a3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 30 Mar 2013 19:23:54 +0000 Subject: fix for the field type - it must be signed git-svn-id: http://svn.miranda-ng.org/main/trunk@4261 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- include/delphi/m_fontservice.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/delphi/m_fontservice.inc') diff --git a/include/delphi/m_fontservice.inc b/include/delphi/m_fontservice.inc index 81761f0924..bc4d74fe98 100644 --- a/include/delphi/m_fontservice.inc +++ b/include/delphi/m_fontservice.inc @@ -43,7 +43,7 @@ type PFontSettings_tag = ^TFontSettings_tag; TFontSettings_tag = record colour : TCOLORREF; - size : BYTE; + size : ShortInt; style : BYTE; // see the DBFONTF_* flags above charset : BYTE; szFace : array[0..(LF_FACESIZE)-1] of AnsiChar; @@ -54,7 +54,7 @@ type PFontSettingsW_tag = ^TFontSettingsW_tag; TFontSettingsW_tag = record colour : TCOLORREF; - size : BYTE; + size : ShortInt; style : BYTE; // see the DBFONTF_* flags above charset : BYTE; szFace : array[0..(LF_FACESIZE)-1] of WideChar; @@ -69,9 +69,9 @@ type TFontID_tag = record cbSize : int; // [TRANSLATED-BY-CORE] group the font belongs to - this is the 'Font Group' list in the options page - group : array[0..63] of AnsiChar; + group : array[0..63] of AnsiChar; // [TRANSLATED-BY-CORE] the name of the font setting e.g. 'contacts' in the 'contact list' group - name : array[0..63] of AnsiChar; + name : array[0..63] of AnsiChar; // the 'module' in the database where the font data is stored dbSettingsGroup: array[0..31] of AnsiChar; // prepended to the settings used to store this font's data in the db @@ -92,9 +92,9 @@ type TFontIDW_tag = record cbSize : int; // [TRANSLATED-BY-CORE] group the font belongs to - this is the 'Font Group' list in the options page - group : array[0..63] of WideChar; + group : array[0..63] of WideChar; // [TRANSLATED-BY-CORE] the name of the font setting e.g. 'contacts' in the 'contact list' group - name : array[0..63] of WideChar; + name : array[0..63] of WideChar; // the 'module' in the database where the font data is stored dbSettingsGroup: array[0..31] of AnsiChar; // prepended to the settings used to store this font's data in the db -- cgit v1.2.3