https://bugs.freedesktop.org/show_bug.cgi?id=64599

Julien Nabet <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #4 from Julien Nabet <[email protected]> ---
Thorsten: 
I tried to follow the bt:
editeng/source/accessibility/AccessibleContextBase.cxx
    660 void AccessibleContextBase::ThrowIfDisposed (void)
    661     throw (::com::sun::star::lang::DisposedException)
    662 {
    663     if (rBHelper.bDisposed || rBHelper.bInDispose)
    664     {
    665         OSL_TRACE ("Calling disposed object. Throwing exception:");
    666         throw lang::DisposedException ("object has been already
disposed",
    667             static_cast<uno::XWeak*>(this));
    668     }
    669 }

svx/source/accessibility/AccessibleShape.cxx
    622 awt::Size SAL_CALL AccessibleShape::getSize (void)
    623     throw (uno::RuntimeException)
    624 {
    625     ThrowIfDisposed ();
    626     awt::Rectangle aBoundingBox (getBounds());
    627     return awt::Size (aBoundingBox.Width, aBoundingBox.Height);
    628 }

vcl/aqua/source/a11y/aqua11ycomponentwrapper.mm
     33 +(id)sizeAttributeForElement:(AquaA11yWrapper *)wrapper {
     34     Size size = [ wrapper accessibleComponent ] -> getSize();
     35     NSSize nsSize = NSMakeSize ( (float) size.Width, (float)
size.Height );
     36     return [ NSValue valueWithSize: nsSize ];

vcl/aqua/source/a11y/aqua11ywrapper.mm
    396 -(id)sizeAttribute {
    397     if ( [ self accessibleComponent ] != nil ) {
    398         return [ AquaA11yComponentWrapper sizeAttributeForElement: self
];
    399     } else {
    400         return nil;
    401     }
    402 }

But I don't find anything relevant...
Any idea?

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to