From d83baeb842ea828eaee90a0cd6575872a95240e8 Mon Sep 17 00:00:00 2001 From: Alexey Kulakov Date: Sat, 8 Mar 2014 13:10:05 +0000 Subject: Pascal-style type correction Letter case correction small fixes Actman UA part dialog slightly changed git-svn-id: http://svn.miranda-ng.org/main/trunk@8473 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- include/delphi/m_msg_buttonsbar.inc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'include/delphi/m_msg_buttonsbar.inc') diff --git a/include/delphi/m_msg_buttonsbar.inc b/include/delphi/m_msg_buttonsbar.inc index 45abb43564..ee97f3d3ce 100644 --- a/include/delphi/m_msg_buttonsbar.inc +++ b/include/delphi/m_msg_buttonsbar.inc @@ -78,10 +78,10 @@ type cbSize :int; pt :TPOINT; // screen coordinates for menus pszModule :PAnsiChar; // button owners name - dwButtonId:DWORD; // registered button ID + dwButtonId:dword; // registered button ID hwndFrom :HWND; // button parents HWND - hContact :MCONTACT; - flags :DWORD; // BBCF_ flags + hContact :TMCONTACT; + flags :dword; // BBCF_ flags end; const @@ -102,16 +102,16 @@ const type tagBBButton = record cbSize :int; // size of structure - dwButtonID :DWORD; // your button ID, will be combined with pszModuleName for storing settings, etc... + dwButtonID :dword; // your button ID, will be combined with pszModuleName for storing settings, etc... pszModuleName:PAnsiChar; // module name without spaces and underline symbols (e.g. "tabsrmm") szTooltip :TChar; // button's tooltip - dwDefPos :DWORD; // default order pos of button, counted from window edge (left or right) + dwDefPos :dword; // default order pos of button, counted from window edge (left or right) // use value >100, because internal buttons using 10,20,30... 80, etc iButtonWidth :int; // must be 0 - bbbFlags :DWORD; // combine of BBBF_ flags above + bbbFlags :dword; // combine of BBBF_ flags above hIcon :HICON; // Handle to icolib registered icon, it's better to register with pszSection = "TabSRMM/Toolbar" -end; - BBButton = tagBBButton; + end; + tBBButton = tagBBButton; {$ENDIF} -- cgit v1.2.3