"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: | UpdatableInset * InsetCollapsable::getLockingInset() const | { | - UpdatableInset * in = inset.getLockingInset(); | + InsetText * in = (InsetText *) inset.getLockingInset(); | if (&inset == in) | return const_cast<InsetCollapsable *>(this); | return in; We do not use C-style casts. Use C++ casts. static_cast<InsetText *>(...) -- Lgb
- Re: Compilation problem Lars Gullik Bjønnes
- Compilation problem Kayvan A. Sylvan
- Re: Compilation problem Garst R. Reese
- Re: Compilation problem Kayvan A. Sylvan
- Re: Compilation problem Juergen Vigna
- Re: Compilation problem Andre Poenitz
- Re: Compilation problem Kayvan A. Sylvan
- Re: Compilation problem Juergen Vigna
- Re: Compilation problem Andre Poenitz
- Re: Compilation problem Kayvan A. Sylvan
- Re: Compilation problem Lars Gullik Bjønnes
- Re: Compilation problem Juergen Vigna
- Re: Compilation problem Lars Gullik Bjønnes
- Compilation problem ben
- Re: Compilation problem Kayvan A. Sylvan
- Re: Compilation problem Dekel Tsur
- Compilation Problem Pascal Francq
- Re: Compilation Problem Angus Leeming