John Levon <[EMAIL PROTECTED]> writes:

| On Thu, Nov 14, 2002 at 09:32:04AM +0100, Andre Poenitz wrote:
>
>> On Wed, Nov 13, 2002 at 08:08:45PM +0000, John Levon wrote:
>> > +  LyXText * t(users->getLyXText());
>> 
>> Could you _please_ use 
>> 
>>   LyXText * t = users->getLyXText();
>> 
>> here?
>> 
>> I personally find this _much_ more readable and 90% of the rest of LyX are
>> like this.
>
| Lars wants it the other way.

I am ambivalent...

I prefer

  string str("hello");

over

 string str = "hello";


but

 string str = hello() + world();

over
 
 string str(hello() + world());

-- 
        Lgb

Reply via email to