Re: Question about vcl/source/window/builder.cxx
On Sat, 2012-12-15 at 06:19 -0800, julien2412 wrote: > Should it be (sValue[0] == 'e' || sValue[0] == 'E') Yeah, that's what I had in mind. Fixed now, thanks for that :-) C. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.f
Question about vcl/source/window/builder.cxx
Hello, Keeping on with cppcheck, I found this on vcl/source/window/builder.cxx 1892 else if (sKey == "pack-type") 1893 { 1894 VclPackType ePackType = (sValue[0] == 'e' || sValue[0] == 'e') ? VCL_PACK_END : VCL_PACK_START; 1895 pCu