mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 02:20:21 +02:00
decrease amount of win32 interface hints
git-svn-id: trunk@14241 -
This commit is contained in:
parent
d303b5d6d5
commit
e43614c705
@ -140,9 +140,11 @@ end;
|
||||
class function TWin32WSCustomTrayIcon.Show(const ATrayIcon: TCustomTrayIcon): Boolean;
|
||||
var
|
||||
tnida: TNotifyIconDataA;
|
||||
{$ifdef WindowsUnicodeSupport}
|
||||
tnidw: TNotifyIconDataW;
|
||||
AnsiBuffer: ansistring;
|
||||
WideBuffer: widestring;
|
||||
{$endif}
|
||||
Window: Windows.TWndClassEx;
|
||||
begin
|
||||
vwsTrayIcon := ATrayIcon;
|
||||
@ -240,9 +242,11 @@ end;
|
||||
class procedure TWin32WSCustomTrayIcon.InternalUpdate(const ATrayIcon: TCustomTrayIcon);
|
||||
var
|
||||
tnida: TNotifyIconDataA;
|
||||
{$ifdef WindowsUnicodeSupport}
|
||||
tnidw: TNotifyIconDataW;
|
||||
AnsiBuffer: ansistring;
|
||||
WideBuffer: widestring;
|
||||
{$endif}
|
||||
begin
|
||||
{$ifdef WindowsUnicodeSupport}
|
||||
if UnicodeEnabledOS then
|
||||
|
@ -899,8 +899,10 @@ end;
|
||||
class procedure TWin32WSCustomComboBox.SetText(const AWinControl: TWinControl; const AText: string);
|
||||
var
|
||||
Handle: HWND;
|
||||
{$ifdef WindowsUnicodeSupport}
|
||||
AnsiBuffer: ansistring;
|
||||
WideBuffer: widestring;
|
||||
{$endif}
|
||||
begin
|
||||
Assert(False, Format('Trace:TWin32WSCustomComboBox.SetText --> %S', [AText]));
|
||||
Handle := AWinControl.Handle;
|
||||
|
Loading…
Reference in New Issue
Block a user