Andre Poenitz wrote:
On Thu, Nov 01, 2007 at 10:58:29PM +0200, Dov Feldstern wrote:
Richard Heck wrote:
Probably should be asInsetCollapsable().
Hmm, yes. I tried to conform to the example of asTextInset, but I now
notice that asInsetMath goes the other way... Should I change asTextInset
-> a
On Thu, Nov 01, 2007 at 11:24:37PM +0200, Dov Feldstern wrote:
> Dov Feldstern wrote:
>> Richard Heck wrote:
>>> Some silly comments.
+/// is this inset based on the CollapsableInset class?
+virtual InsetCollapsable * asCollapsableInset() { return 0; }
+/// is this inset
On Thu, Nov 01, 2007 at 10:58:29PM +0200, Dov Feldstern wrote:
> Richard Heck wrote:
>> Some silly comments.
>>> +/// is this inset based on the CollapsableInset class?
>>> +virtual InsetCollapsable * asCollapsableInset() { return 0; }
>>> +/// is this inset based on the CollapsableInse
Dov Feldstern wrote:
Richard Heck wrote:
Some silly comments.
+/// is this inset based on the CollapsableInset class?
+virtual InsetCollapsable * asCollapsableInset() { return 0; }
+/// is this inset based on the CollapsableInset class?
+virtual InsetCollapsable const * asCollap
Martin Vermeer wrote:
Hmmm, I see the ERT calls its own version of resetParagraphsFont(). I
believe it can be removed so it uses the InsetCollapsable one. Saves a
few lines. (I think I planned on doing this, but forgot.)
That doesn't impact this patch, though, does it? Here I'm using the
For
Richard Heck wrote:
Some silly comments.
+/// is this inset based on the CollapsableInset class?
+virtual InsetCollapsable * asCollapsableInset() { return 0; }
+/// is this inset based on the CollapsableInset class?
+virtual InsetCollapsable const * asCollapsableInset() const {
On Wed, Oct 31, 2007 at 01:03:16AM +0200, Dov Feldstern wrote:
> Hi!
>
> Martin --- thanks for all your work towards the ForceLTR option!
>
> The attached patch uses this option in order to make sure that insets
> which define this option are put in an LTR environment if they are in
> RTL surro
Some silly comments.
+ /// is this inset based on the CollapsableInset class?
+ virtual InsetCollapsable * asCollapsableInset() { return 0; }
+ /// is this inset based on the CollapsableInset class?
+ virtual InsetCollapsable const * asCollapsableInset() const { return 0;
Hi!
Martin --- thanks for all your work towards the ForceLTR option!
The attached patch uses this option in order to make sure that insets
which define this option are put in an LTR environment if they are in
RTL surroundings (which is why I originally asked for this option).
To this end, I