revised patch (ignore prev message about "Forms.pp function error").
Needs some testing on Carbon/Cocoa, because MK_ALT const is defined in
Mac WS'es.
--
Regards,
Alexey
Index: lcl/interfaces/carbon/carbonproc.pp
===
--- lcl/inte
As pointed by Dmitry B, and checked by myself in LCL, MK_ALT must be
defined in LCLType.pp as $2000. For ex, this is sample from
qtwidgets.pas:
if (ModifierState and MK_SHIFT) <> 0 then
Msg.State := [ssShift];
if (ModifierState and MK_CONTROL) <> 0 then
Msg.State := [ssCtrl] + M
On Fri, 26 Oct 2018 21:21:16 +0300
AlexeyT via Lazarus wrote:
> added 2 inline's + fixed for loop.
Thanks. Applied.
Mattias
--
___
Lazarus mailing list
Lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus
added 2 inline's + fixed for loop.
--
Regards,
Alexey
Index: components/lazutils/fpcadds.pas
===
--- components/lazutils/fpcadds.pas (revision 59355)
+++ components/lazutils/fpcadds.pas (working copy)
@@ -25,24 +25,21 @@
functio
El 25/10/18 a las 18:46, Bo Berglund via Lazarus escribió:
I am working on a port of a Windows Win32 command line program (Delphi
2007) to Linux Ubuntu 18.04 64bit.
I am almost done now and my tests show that the basic functionality
works as intended.
But I am not sure about the exception handli
BTW, what you call a tooltip is actually an identifier completion window.
A tooltip is just a hint window for a ToolButton or similar.
Juha
--
___
Lazarus mailing list
Lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus
If a syntax is accepted by FPC then it should be accepted also by CodeTools.
Please open a bug report with a minimal example code.
Do not include units from Indy. Just reduce the problematic line into
its simplest form that triggers the bug.
Juha
--
___
I discovered a strange IDE issue concerning the tooltips in Lazarus
when using TIdFTP objects from Indy10.
I have made two installations of Lazarus 1.8.4 + FPC 3.0.4, one on
Windows7 and one in IUbuntu 18.04.
I am working on a project ported from Delphi 2007 which uses Indy10.
So in both IDE:s I ha