https://bugs.documentfoundation.org/show_bug.cgi?id=96188

Michael Meeks <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever confirmed|0                           |1

--- Comment #1 from Michael Meeks <[email protected]> ---
Odd; would love to know if others can reproduce this. Is it 64bit specific, is
it German specific ? the code that throws the error is:

OUString SAL_CALL ModuleManager::identify(const css::uno::Reference<
css::uno::XInterface >& xModule)
    throw(css::lang::IllegalArgumentException,
          css::frame::UnknownModuleException,
          css::uno::RuntimeException, std::exception         )
{
    // valid parameter?
    css::uno::Reference< css::frame::XFrame >      xFrame     (xModule,
css::uno::UNO_QUERY);
    css::uno::Reference< css::awt::XWindow >       xWindow    (xModule,
css::uno::UNO_QUERY);
    css::uno::Reference< css::frame::XController > xController(xModule,
css::uno::UNO_QUERY);
    css::uno::Reference< css::frame::XModel >      xModel     (xModule,
css::uno::UNO_QUERY);

    if (
        (!xFrame.is()     ) &&
        (!xWindow.is()    ) &&
        (!xController.is()) &&
        (!xModel.is()     )
       )
    {
        throw css::lang::IllegalArgumentException(
                OUString("Given module is not a frame nor a window, controller
or model."),
                static_cast< ::cppu::OWeakObject* >(this),
                1);
    }

in the framework ... which suggests that you have some extension or module
loading there that is really unexpected. What extensions do you have installed
? [ I guess even a StarBasic extension could cause that ].

Does it disappear if you move your profile away ?

-- 
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