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

Oliver Brinzing <oliver.brinz...@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |oliver.brinz...@gmx.de

--- Comment #3 from Oliver Brinzing <oliver.brinz...@gmx.de> ---
(In reply to Dagmara from comment #2)
> I can't reproduce it with:
> Version: 6.5.0.0.alpha0+ (x64)
> Build ID: 350d25da375f221edfa37309324ce3c68cf297ef

Have you tried with a *Debug* Build ?
I can still reproduce after a clean and full build with:

Version: 6.5.0.0.alpha0+ (x64)
Build ID: 33ac8ea863ddba903834fe9d0e7165a087bb9c5f
CPU threads: 12; OS: Windows 10.0 Build 18363; UI render: GL; VCL: win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc: CL

> warn:legacy.osl:5228:8952:vcl/source/window/window.cxx:269: 
> Window ( class VclVBox()) with live children destroyed:  class 
> FormattedField(0) class FormattedField()
> Window ( class VclVBox()) with live children destroyed:  class 
> FormattedField(0) class FormattedField()

#if OSL_DEBUG_LEVEL > 0
    if ( true ) // always perform these tests in debug builds
    {
        OStringBuffer aErrorStr;
        bool        bError = false;
        vcl::Window*     pTempWin;

        if ( mpWindowImpl->mpFirstChild )
        {
            OStringBuffer aTempStr("Window (");
            aTempStr.append(lcl_createWindowInfo(this));
            aTempStr.append(") with live children destroyed: ");
            pTempWin = mpWindowImpl->mpFirstChild;
            while ( pTempWin )
            {
                aTempStr.append(lcl_createWindowInfo(pTempWin));
                pTempWin = pTempWin->mpWindowImpl->mpNext;
            }
269 ->      OSL_FAIL( aTempStr.getStr() );
            Application::Abort(OStringToOUString(aTempStr.makeStringAndClear(),
 RTL_TEXTENCODING_UTF8));   // abort in debug builds, this must be fixed!
        }

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to