summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/HistoryGrid.pas
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-12-10 15:13:43 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-12-10 15:13:43 +0000
commit8dc11afcc55fe32c3042fe41091dae639fd90bc5 (patch)
treeb773fe006c7e6faa3af934fd3e7e3d2bd92deef4 /plugins/HistoryPlusPlus/HistoryGrid.pas
parent042c8d7b52216f2f9fa20b498716ccbec3b000bf (diff)
reverted styles back to DWORD due to VCL restrictions
git-svn-id: http://svn.miranda-ng.org/main/trunk@2713 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/HistoryGrid.pas')
-rw-r--r--plugins/HistoryPlusPlus/HistoryGrid.pas20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/HistoryPlusPlus/HistoryGrid.pas b/plugins/HistoryPlusPlus/HistoryGrid.pas
index 9eb53aa851..3cc5cee89c 100644
--- a/plugins/HistoryPlusPlus/HistoryGrid.pas
+++ b/plugins/HistoryPlusPlus/HistoryGrid.pas
@@ -5192,7 +5192,7 @@ end;
procedure THistoryGrid.SetRichRTL(RTL: Boolean; RichEdit: THPPRichEdit; ProcessTag: Boolean = True);
var
pf: PARAFORMAT2;
- ExStyle: uint_ptr;
+ ExStyle: DWORD;
begin
// we use RichEdit.Tag here to save previous RTL state to prevent from
// reapplying same state, because SetRichRTL is called VERY OFTEN
@@ -5202,7 +5202,7 @@ begin
ZeroMemory(@pf, SizeOf(pf));
pf.cbSize := SizeOf(pf);
pf.dwMask := PFM_RTLPARA;
- ExStyle := uint_ptr(GetWindowLongPtr(RichEdit.Handle, GWL_EXSTYLE)) and
+ ExStyle := DWORD(GetWindowLongPtr(RichEdit.Handle, GWL_EXSTYLE)) and
not(WS_EX_RTLREADING or WS_EX_LEFTSCROLLBAR or WS_EX_RIGHT or WS_EX_LEFT);
if RTL then
begin
@@ -5864,15 +5864,15 @@ end;
procedure THistoryGrid.SetBorderStyle(Value: TBorderStyle);
var
- Style, ExStyle: uint_ptr;
+ Style, ExStyle: DWORD;
begin
if FBorderStyle = Value then
exit;
FBorderStyle := Value;
if HandleAllocated then
begin
- Style := uint_ptr(GetWindowLongPtr(Handle, GWL_STYLE)) and WS_BORDER;
- ExStyle := uint_ptr(GetWindowLongPtr(Handle, GWL_EXSTYLE)) and not WS_EX_CLIENTEDGE;
+ Style := DWORD(GetWindowLongPtr(Handle, GWL_STYLE)) and WS_BORDER;
+ ExStyle := DWORD(GetWindowLongPtr(Handle, GWL_EXSTYLE)) and not WS_EX_CLIENTEDGE;
if Ctl3D and NewStyleControls and (FBorderStyle = bsSingle) then
begin
Style := Style and not WS_BORDER;
@@ -5885,12 +5885,12 @@ end;
procedure THistoryGrid.CMBiDiModeChanged(var Message: TMessage);
var
- ExStyle: uint_ptr;
+ ExStyle: DWORD;
begin
// inherited;
if HandleAllocated then
begin
- ExStyle := uint_ptr(GetWindowLongPtr(Handle, GWL_EXSTYLE)) and
+ ExStyle := DWORD(GetWindowLongPtr(Handle, GWL_EXSTYLE)) and
not(WS_EX_RTLREADING or WS_EX_LEFTSCROLLBAR or WS_EX_RIGHT or WS_EX_LEFT);
AddBiDiModeExStyle(ExStyle);
SetWindowLongPtr(Handle, GWL_EXSTYLE, ExStyle);
@@ -5899,12 +5899,12 @@ end;
procedure THistoryGrid.CMCtl3DChanged(var Message: TMessage);
var
- Style, ExStyle: uint_ptr;
+ Style, ExStyle: DWORD;
begin
if HandleAllocated then
begin
- Style := uint_ptr(GetWindowLongPtr(Handle, GWL_STYLE)) and WS_BORDER;
- ExStyle := uint_ptr(GetWindowLongPtr(Handle, GWL_EXSTYLE)) and not WS_EX_CLIENTEDGE;
+ Style := DWORD(GetWindowLongPtr(Handle, GWL_STYLE)) and WS_BORDER;
+ ExStyle := DWORD(GetWindowLongPtr(Handle, GWL_EXSTYLE)) and not WS_EX_CLIENTEDGE;
if Ctl3D and NewStyleControls and (FBorderStyle = bsSingle) then
begin
Style := Style and not WS_BORDER;