[Lazarus] ★ Leiam suas mensagens antes que sejam deletadas!

2016-03-06 Thread Edgar Muniz Berlinck
Title: Leiam suas mensagens antes que sejam deletadas!










			




See this email in English, Deutsch, Français, Italiano, Español or 37 other languages.







Leia as mensagens deixadas por Edgar Muniz Berlinck antes que sejam deletadas!























Este e-mail é parte de nosso sistema de mensagens. A mensagem foi enviada por  
Edgar Muniz Berlinck. Se você recebeu este e-mail por engano, por favor ignore. 
A mensagem será deletada em breve.



   




Leia sua mensagem







Mais gente na sua região curtindo o Badoo



































Baixar na App Store





Baixar no Google Play





Baixar na Windows Store



Você recebeu este e-mail de Badoo Trading Limited (endereço postal abaixo). Se você não deseja receber mais e-mails do Badoo, por favor clique aqui para sair. Badoo Trading limited é uma companhia limitada registrada na Inglaterra e País de Gales com CRN 07540255 e firma registrada em Media Village, 131 - 151 Great Titchfield Street, London, W1W 5BB.






Siga-nos











			
		









--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Form Resizing

2016-03-06 Thread Juha Manninen
On Sun, Mar 6, 2016 at 7:27 PM, Bo Berglund  wrote:
> I have no idea what you mean by this statement...
> What is LXDE and how do I test Lazarus for LXDE?

Bo, I have a strong feeling that you are playing dummy. Why do you do it?
You must know the concept of desktop environments since you tested
many distributions already. A simple google search would reveal that
LXDE is a desktop environment.


> In this environment the gtk2 is still selected but the form sizing
> issue is not apparent.

Yes, the widgetset is GTK2 unless you have explicitly configured it
for QT, as I wrote in my previous mail.
Anyway, the problem is quite surely LXDE dependent.


>>Then could you please find the revision that broke things under LXDE.
>>Raspberry may be too slow for bisecting, you must do it using a faster
>>computer.
> Now you are talking mystery again. I do not understand how I could do
> this...

I explained the bisect process in an earlier mail in this same thread.
I will not repeat it here.
Bo, do you read the replies from other people? Sometimes you seem to
ignore them completely.

Juha

--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Form Resizing

2016-03-06 Thread Juha Manninen
On Mon, Mar 7, 2016 at 2:01 AM, Luiz Americo Pereira Camara
 wrote:
> According to a previous message he is using Mate

Not in his Raspbian in Raspberry Pi2. It most likely has LXDE although
he has not confirmed it.

Juha

--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Form Resizing

2016-03-06 Thread Luiz Americo Pereira Camara
2016-03-06 19:47 GMT-03:00 Giuliano Colla :

> Il 06/03/2016 18:27, Bo Berglund ha scritto:
> [...]
>
>> I have no idea what you mean by this statement...
>> What is LXDE and how do I test Lazarus for LXDE?
>>
> [...]
>
>> Apart fromn that I
>> have no idea how to use svn, which I assume you mean I should do.
>>
>>
> A general hint: whenever you don't know what an acronym means (such al
> LXDE = Lightweight X11 Desktop Environment, which btw is most likely the
> desktop you're using),


According to a previous message he is using Mate

Luiz
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Form Resizing

2016-03-06 Thread Giuliano Colla

Il 06/03/2016 18:27, Bo Berglund ha scritto:
[...]

I have no idea what you mean by this statement...
What is LXDE and how do I test Lazarus for LXDE?

[...]

Apart fromn that I
have no idea how to use svn, which I assume you mean I should do.



A general hint: whenever you don't know what an acronym means (such al 
LXDE = Lightweight X11 Desktop Environment, which btw is most likely the 
desktop you're using), or how to take advantage of a popular control 
version program like svn, just type its name in a Google search, and 
you'll get all the information, tutorials and discussions you might 
wish, in order to understand what is it, get acquainted with it, use it 
and be aware of its features and bugs.


Just my 2 cents,

Giuliano


--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Edit Shortcut Bug when Defining Generic Record

2016-03-06 Thread Donald Ziesig

On 03/06/2016 02:17 PM, Mazola Winstrol wrote:

Hello,

Lazarus version: 1.6 using the lazarus provided fpc compiler (3.0).


Please confirm if it is a bug:

If i define a generic record, when i press Ctrl+Shift+C to 
automatically define the implementation, the code generated ignores 
the type parameter.



=== CODE ===

unit Test;

interface

type
  TMyRecord = record
procedure TestIfCompiles;
  end;


implementation


// CODE GENERATED WITH Ctrl+Shift+C

procedure TMyRecord.TestIfCompiles;
// Should be TMyRecord.TestIfCompiles;
begin

end;

end,

 END 


Best reagds




--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Hi Mazola,

It happens to me, as well.  I posted a bug report on it a while back, 
but haven't seen any response to it yet.


Don
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Edit Shortcut Bug when Defining Generic Record

2016-03-06 Thread Mazola Winstrol
Hello,

Lazarus version: 1.6 using the lazarus provided fpc compiler (3.0).


Please confirm if it is a bug:

If i define a generic record, when i press Ctrl+Shift+C to automatically
define the implementation, the code generated ignores the type parameter.


=== CODE ===

unit Test;

interface

type
  TMyRecord = record
procedure TestIfCompiles;
  end;


implementation


// CODE GENERATED WITH Ctrl+Shift+C

procedure TMyRecord.TestIfCompiles;
// Should be TMyRecord.TestIfCompiles;
begin

end;

end,

 END 


Best reagds
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] Form Resizing

2016-03-06 Thread Bo Berglund
On Sat, 5 Mar 2016 19:55:46 +0200, Juha Manninen
 wrote:

>On Mar 5, 2016 4:48 PM, "Bo Berglund"  wrote:
>> I looked at Lazarus Tools/Configure "Bild Lazarus" I see that the LCL
>> widget type is set to gtk2.
>> That is the same as in my Linux Mint 17.3 Mate installation.
>
>Yes, the widgetset is obviously GTK2 unless you have explicitly configured
>it for QT.
>Could you please confirm that the problems happen only with LXDE, as I
>asked earlier.
I have no idea what you mean by this statement...
What is LXDE and how do I test Lazarus for LXDE?

>You have apparently tested with other desktops, too, for example Mate.
That happened to be the case since I decided I should get me a more
powerful computer so I installed the latest Mint - Mate in a virtual
machine on my laptop.
In this environment the gtk2 is still selected but the form sizing
issue is not apparent.

>Then could you please find the revision that broke things under LXDE.
>Raspberry may be too slow for bisecting, you must do it using a faster
>computer.
Now you are talking mystery again. I do not understand how I could do
this...

I have used svn cook-book style to retrieve a specific tagged revision
of FPC and Lazarus and used make to build them. Apart fromn that I
have no idea how to use svn, which I assume you mean I should do.


-- 
Bo Berglund
Developer in Sweden


--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


[Lazarus] Lazarus svn trunk compilation broken under Windows

2016-03-06 Thread Sandro Cumerlato
> win32wscustomlistview.inc(84,15) Error: Incompatible types: got
"TYPES.TSmallPoint" expected "WINDOWS.TSmallPoint"
> win32wscomctrls.pp(1017) Fatal: There were 1 errors compiling module,
stopping
> Fatal: Compilation aborted

Please review attached patch and apply if ok.

Sandro Cumerlato
Index: lcl/interfaces/win32/win32wscustomlistview.inc
===
--- lcl/interfaces/win32/win32wscustomlistview.inc  (revision 51831)
+++ lcl/interfaces/win32/win32wscustomlistview.inc  (working copy)
@@ -81,7 +81,7 @@
   P.X:=0;
   P.Y:=0;
 end;
-Result := PointToSmallPoint(P);
+Result := Windows.PointToSmallPoint(P);
   end;
 
   procedure HandleListViewOwnerData(ALV: TCustomListViewAccess);
--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus


Re: [Lazarus] PDF generator

2016-03-06 Thread Graeme Geldenhuys

On 06/03/2016 07:35, Roberto P. wrote:

Are metadata included ?


Do you mean Author, PDF Creator, Date Modified, Keywords etc 
information. If so, yes that is included.


Regards,
  Graeme


--
___
Lazarus mailing list
Lazarus@lists.lazarus.freepascal.org
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus