summaryrefslogtreecommitdiff
path: root/include/delphi
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-03-30 19:23:54 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-03-30 19:23:54 +0000
commit53bb473ba5f24175ac124098dac69df6ca3570a3 (patch)
tree9079c1a0dd3e5172a00b5080df0968102f43f8e5 /include/delphi
parent6c0d5106bb74b20f4f8e52d3acbdee29f70b5543 (diff)
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
Diffstat (limited to 'include/delphi')
-rw-r--r--include/delphi/m_fontservice.inc12
1 files changed, 6 insertions, 6 deletions
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