Hello Sieghard.

Many thanks for the fixes in newdialogs, (nearly) all seems ok now.

There is a little problem with MSEClock window what not redrawn correctly when 
resized.

If resize the window (and change only the height), the window isn't redrawn 
properly. If clicking into the window, then it is redrawn properly.

See here:https://github.com/mse-org/mseide-msegui/issues/90

Also, only with Windows 64 bit, compiling MSEide with msegui-sieghard branch, 
there is that error:

mpqconnection.pas(1264,20) Error: (4004) Variable identifier expected

This point to:

------------------------
// Added for recent postgresql versions (28. Mar 2024 22:54:58):
{$ifdef FPC}
        int64 (cur):= beton (pint64 (currbuff)^); // point here
{$else}
        int64(ar8ty (cur)):= beton8 (pint64 (currbuff)^);
{$endif}
--------------------------

If changing with this (but not sure if it is ok) the compilation is ok:

----------------------
 // Added for recent postgresql versions (28. Mar 2024 22:54:58):
     ftCurrency: begin
{$ifdef FPC}
        int64(ar8ty (cur)):= beton (pint64 (currbuff)^); // here adding ar8ty()
{$else}
        int64(ar8ty (cur)):= beton8 (pint64 (currbuff)^);
{$endif}
______________

Otherwise all seems perfect.

Have a perfect day.

Fre;D


_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to