Hi, I'm trying to improve the navigator response in the writer module . I want to fix a problem in the Writer's navigator that it displays the correct location in the navigator dialogue(the currently selected position in the document). I have observed that the reason for the navigator not showing the position correctly is due to the uninitialized value of m_nLastSelType variable, So i added some code for that in libo/sw/source/uibase/utlui/content.cxx: (near line 1630 in content.cxx) : in the diff file www.pastebin.com/KTuzF4hn What i'm really doing is traversing the document and breaking out of the loop whenever i encounter the Currently outlined entry. But it's not working except for headings and tables. when I asked on IRC they told me static_cast<..> doesn't work on SwOutlineContent. I would really appreciate if anyone could guide me in the right direction about how can i achieve this(when static cast is not working). On Wed, Feb 17, 2016 at 5:30 PM, <libreoffice-request@lists.freedesktop.org> wrote:
Send LibreOffice mailing list submissions to libreoffice@lists.freedesktop.org To subscribe or unsubscribe via the World Wide Web, visit https://lists.freedesktop.org/mailman/listinfo/libreoffice or, via email, send a message with subject or body 'help' to libreoffice-request@lists.freedesktop.org You can reach the person managing the list at libreoffice-owner@lists.freedesktop.org When replying, please edit your Subject line so it is more specific than "Re: Contents of LibreOffice digest..." Today's Topics: 1. Re: New Defects reported by Coverity Scan for LibreOffice (Tomaž Vajngerl) 2. [Bug 39440] cppcheck cleanliness (bugzilla-daemon@bugs.documentfoundation.org) 3. [Bug 39440] cppcheck cleanliness (bugzilla-daemon@bugs.documentfoundation.org) 4. Problem Building Libreoffice on Linux (Pranav Ganorkar) 5. Re: Unit test failure on building LibreOffice on Windows (Paul Blinzer) 6. Re: Problem Building Libreoffice on Linux (Thorsten Behrens) 7. Re: Problem Building Libreoffice on Linux (Michael Stahl) 8. Build failures in unit test when firebird is enabled (Ken Moffat) 9. [Bug 64575] Photo Album: Better Image Layout (bugzilla-daemon@bugs.documentfoundation.org) 10. [Bug 40469] Modifed Frame Style Options Not Preserved, "Keep Ratio" Option Unavailable (bugzilla-daemon@bugs.documentfoundation.org) 11. [Bug 45615] Implement additional 3d slideshow transitions (bugzilla-daemon@bugs.documentfoundation.org) 12. [Bug 34882] Special character favorites (bugzilla-daemon@bugs.documentfoundation.org) 13. [Bug 63154] replace tools/solar.h macros with osl versions (bugzilla-daemon@bugs.documentfoundation.org) 14. [Bug 82319] use modern OpenGL for OpenGL canvas (bugzilla-daemon@bugs.documentfoundation.org) 15. [Bug 89387] improve performance for some matrix operations (bugzilla-daemon@bugs.documentfoundation.org) 16. [Bug 30732] Character formatting not retained in entries of TOC, table lists, etc. (bugzilla-daemon@bugs.documentfoundation.org) 17. [Bug 39749] calc unit test writing (bugzilla-daemon@bugs.documentfoundation.org) 18. [Bug 77667] Remove gcc3 workaround where it could handle instantiated objects as parameters (bugzilla-daemon@bugs.documentfoundation.org) 19. [Bug 77667] Remove gcc3 workaround where it could handle instantiated objects as parameters (bugzilla-daemon@bugs.documentfoundation.org) 20. [Bug 67544] FILESAVE: Slide transistion sound(other sound) is not included in presentation file (bugzilla-daemon@bugs.documentfoundation.org) 21. [Bug 97640] Beanshell Editor: Use fixed-width font (bugzilla-daemon@bugs.documentfoundation.org) 22. [Bug 97640] Beanshell Editor: Use fixed-width font (bugzilla-daemon@bugs.documentfoundation.org) 23. [Bug 97640] Beanshell Editor: Use fixed-width font (bugzilla-daemon@bugs.documentfoundation.org) 24. [Bug 40469] Modifed Frame Style Options Not Preserved, "Keep Ratio" Option Unavailable (bugzilla-daemon@bugs.documentfoundation.org) 25. [Bug 30873] Field variables break with additional formats (bugzilla-daemon@bugs.documentfoundation.org) 26. [Bug 68617] UI: Row/Column Highlight of current selection not showing correctly (bugzilla-daemon@bugs.documentfoundation.org) 27. [Bug 33467] Mac: Default printer should be taken from the OS when printing (bugzilla-daemon@bugs.documentfoundation.org) 28. [Bug 33831] Media wiki export pictures as files (bugzilla-daemon@bugs.documentfoundation.org) 29. [Bug 30873] Field variables break with additional formats (bugzilla-daemon@bugs.documentfoundation.org) 30. [Bug 97703] EasyHack: Remove empty setUp/tearDown overrides from CppUnit test code (bugzilla-daemon@bugs.documentfoundation.org) 31. [Bug 97654] replace UNO cell types in xlsx import with calc internal ones (bugzilla-daemon@bugs.documentfoundation.org) 32. [Bug 97654] replace UNO cell types in xlsx import with calc internal ones (bugzilla-daemon@bugs.documentfoundation.org) 33. [Bug 90753] gbuild: Move packages to autoinstallation in scp2 (bugzilla-daemon@bugs.documentfoundation.org) 34. [Bug 90753] gbuild: Move packages to autoinstallation in scp2 (bugzilla-daemon@bugs.documentfoundation.org) 35. Re: Vijay license statement (jan iversen) 36. Re: Gaurav Dhingra licence statement (jan iversen) 37. Re: Arnold Dumas licence statement (jan iversen) 38. Re: Chirag Manwani license statement (jan iversen) ---------------------------------------------------------------------- Message: 1 Date: Tue, 16 Feb 2016 13:17:34 +0100 From: Tomaž Vajngerl <quikee@gmail.com> To: Caolán McNamara <caolanm@redhat.com> Cc: libreoffice <libreoffice@lists.freedesktop.org> Subject: Re: New Defects reported by Coverity Scan for LibreOffice Message-ID: < CA+Ev6_ZDgSD_1PnCpJMkiY5qE945EBcrWg_BSWzDChqyZhNRdQ@mail.gmail.com> Content-Type: text/plain; charset=UTF-8 Hi, On Tue, Feb 16, 2016 at 12:22 PM, Caolán McNamara <caolanm@redhat.com> wrote:cid#1352479 and cid#1352479 point out that 54e3ea8a86a309990f5edf78948bfe18dd2de96b "tdf#97715 fix inv. scale calculation in DrawTransformedTexture" means that the calculations to derive ixscale and iyscale are done with integers not floats so the result is always an integer. Is that intentional ?, if it is then the ixscale could be changed to be integers and then I suppose fastAreaScaling = ( ixscale == int( ixscale ) && iyscale == int( iyscale )) becomes always true.Ups, that is not intentional. I'll fix it. Thanks. Regards, Tomaž ------------------------------ Message: 2 Date: Tue, 16 Feb 2016 12:49:26 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 39440] cppcheck cleanliness Message-ID: <bug-39440-19970-4hgfvliQte@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=39440 Commit Notification <libreoffice-commits@lists.freedesktop.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ToBeReviewed |ToBeReviewed target:5.2.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160216/62061fcb/attachment-0001.html------------------------------ Message: 3 Date: Tue, 16 Feb 2016 12:49:28 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 39440] cppcheck cleanliness Message-ID: <bug-39440-19970-KwwivoiXx6@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=39440 --- Comment #72 from Commit Notification < libreoffice-commits@lists.freedesktop.org> --- Arnold Dumas committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=fd3cb8d8222113cbc7bf472060ac77233706ea1f tdf#39440: reduce scope of local variables It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160216/94deab5f/attachment-0001.html------------------------------ Message: 4 Date: Tue, 16 Feb 2016 22:35:34 +0530 From: Pranav Ganorkar <pranavg189@gmail.com> To: libreoffice@lists.freedesktop.org Subject: Problem Building Libreoffice on Linux Message-ID: < CAGWqK_10xAaas2035-bi3XeTY4z5Afq8H+Pze6U+Rdz8OS9+eQ@mail.gmail.com> Content-Type: text/plain; charset="utf-8" Hi, I am trying to build Libreoffice on linux but it fails at this point: ********************************************************************** [CUT] vcl_fontmetric [CUT] vcl_complextext [CUT] vcl_filters_test /bin/sh: line 1: 23247 Segmentation fault (core dumped) LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"$I/program:$I/program":$W/UnpackedTarball/cppunit/src/cppunit/.libs MALLOC_CHECK_=2 MALLOC_PERTURB_=153 $W/LinkTarget/Executable/cppunittester $W/LinkTarget/CppunitTest/libtest_svgio.so --headless "-env:BRAND_BASE_DIR=file://$S/instdir" "-env:BRAND_SHARE_SUBDIR=share" "-env:UserInstallation=file://$W/CppunitTest/svgio.test.user" "-env:CONFIGURATION_LAYERS=xcsxcu:file://$I/share/registry xcsxcu:file://$W/unittest/registry" "-env:UNO_TYPES=file://$I/program/types/offapi.rdb file://$I/program/types.rdb" "-env:UNO_SERVICES=file://$W/ComponentTarget/CppunitTest/svgio/svgio.component file://$W/Rdb/ure/services.rdb file://$W/ComponentTarget/configmgr/source/configmgr.component file://$W/ComponentTarget/dtrans/util/mcnttype.component file://$W/ComponentTarget/framework/util/fwk.component file://$W/ComponentTarget/i18npool/util/i18npool.component file://$W/ComponentTarget/package/source/xstor/xstor.component file://$W/ComponentTarget/package/util/package2.component file://$W/ComponentTarget/toolkit/util/tk.component file://$W/ComponentTarget/sfx2/util/sfx.component file://$W/ComponentTarget/ucb/source/core/ucb1.component file://$W/ComponentTarget/ucb/source/ucp/file/ucpfile1.component file://$W/ComponentTarget/unotools/util/utl.component file://$W/ComponentTarget/sax/source/expatwrap/expwrap.component" -env:URE_INTERNAL_LIB_DIR=file://$I/program -env:LO_LIB_DIR=file://$I/program -env:LO_JAVA_DIR=file://$I/program/classes --protector $W/LinkTarget/Library/unoexceptionprotector.so unoexceptionprotector --protector $W/LinkTarget/Library/unobootstrapprotector.so unobootstrapprotector --protector $W/LinkTarget/Library/libvclbootstrapprotector.so vclbootstrapprotector "-env:CPPUNITTESTTARGET=$W/CppunitTest/svgio.test" > $W/CppunitTest/svgio.test.log 2>&1 [CUT] vcl_mapmode [CUT] vcl_outdev [CUT] vcl_wmf_test No core file identified in directory /mnt/D-Drive/LibreOffice/libreoffice/workdir/CppunitTest/svgio.test.core To show backtraces for crashes during test execution, enable core files with: ulimit -c unlimited [CUT] vcl_timer Error: a unit test failed, please do one of: make CppunitTest_svgio CPPUNITTRACE="gdb --args" # for interactive debugging on Linux make CppunitTest_svgio VALGRIND=memcheck # for memory checking make CppunitTest_svgio DEBUGCPPUNIT=TRUE # for exception catching /mnt/D-Drive/LibreOffice/libreoffice/solenv/gbuild/CppunitTest.mk:90: recipe for target '/mnt/D-Drive/LibreOffice/libreoffice/workdir/CppunitTest/svgio.test' failed make[1]: *** [/mnt/D-Drive/LibreOffice/libreoffice/workdir/CppunitTest/svgio.test] Error 1 make[1]: *** Waiting for unfinished jobs.... Makefile:246: recipe for target 'build' failed make: *** [build] Error 2 ******************************************************************************* How to rectify it so that it builds properly.... Regards, Pranav -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160216/d13ad768/attachment-0001.html------------------------------ Message: 5 Date: Tue, 16 Feb 2016 12:03:31 -0800 From: Paul Blinzer <pblinzer@gmail.com> To: Michael Stahl <mstahl@redhat.com> Cc: libreoffice@lists.freedesktop.org Subject: Re: Unit test failure on building LibreOffice on Windows Message-ID: <CA+pc0A8ESr-EkBphxNJKKrxJA_stidD7RjQT9vefo= NDyw9BEA@mail.gmail.com> Content-Type: text/plain; charset="utf-8" Michael, et al, thank you for the suggestion of --disable-atl. Using it let the compile go through. Also for the good news, to root cause the ATL issue I reinstalled VS2013 community alongside VS2015 community and with that the compilation went through just fine. So no action on your side necessary and apologies for the spam. Regards Paul On Fri, Feb 12, 2016 at 3:20 PM, Paul Blinzer <pblinzer@gmail.com> wrote:Michael, thanks for the pointer, I have the "community edition" installed and I have not used that option... The build install on that machine is pretty much by the book (or better, the web page). I'll gather up the files and send it to you via PM (unless I can glimpse what's going on myself in which case, I'll send the solution :-)) Thanks Paul On Fri, Feb 12, 2016 at 3:32 AM, Michael Stahl <mstahl@redhat.com>wrote:On 12.02.2016 06:43, Paul Blinzer wrote:Compilation went well until reaching unit test for the xmltesttools(seebelow for output).[build CUT] sc_condformatsC:/sources/libo-core/test/source/xmltesttools.cxx:70:SdExportTest::testBnc822341equality assertion failed - Expected: 1 - Actual : 0 - In <file:///C:/cygwin/tmp/lu43369mz57.tmp>, XPath'/ContentType:Types/ContentType:Override[@ContentType='application/vnd.openxmlformats-officedocument.wordprocessingml.document']'number of nodes is incorrectoh that's my test... the only idea i have how that could happen is if you used --disable-atl, which is only recommended if you have Visual Studio Express - the "Community" one has the ATL stuff. if you aren't using --disable-atl then please mail me the file that it complains about, you might need to disable the "pTempFile->EnableKillingFile();" from sdmodeltestbase.hxx:203 to prevent it from getting deleted.-------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160216/9f28783d/attachment-0001.html------------------------------ Message: 6 Date: Tue, 16 Feb 2016 21:37:42 +0100 From: Thorsten Behrens <thb@documentfoundation.org> To: Pranav Ganorkar <pranavg189@gmail.com> Cc: libreoffice@lists.freedesktop.org Subject: Re: Problem Building Libreoffice on Linux Message-ID: <20160216203742.GJ2522@thinkpad.thebehrens.net> Content-Type: text/plain; charset="utf-8" Hi Pranav, you write:No core file identified in directory /mnt/D-Drive/LibreOffice/libreoffice/workdir/CppunitTest/svgio.test.core To show backtraces for crashes during test execution, enable core files with: ulimit -c unlimited [CUT] vcl_timer Error: a unit test failed, please do one of: make CppunitTest_svgio CPPUNITTRACE="gdb --args" # for interactive debugging on Linux make CppunitTest_svgio VALGRIND=memcheck # for memory checking make CppunitTest_svgio DEBUGCPPUNIT=TRUE # for exception catchingDid you try one of the above suggestions? There are usually three reasons a unit test would fail: * something is truly broken on master (compare with red tinderboxes on http://tinderbox.libreoffice.org/MASTER/status.html) * you have a buggy setup (noticing D-Drive in your path above, building on a vfat partition from linux is generally not working) * you are building on a system, or a particular configure switch combination, that is not yet supported & will need manual fixing Your question does not provide enough context to guess which of the cases you're hitting. HTH, -- Thorsten -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: Digital signature URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160216/2238c693/attachment-0001.sig------------------------------ Message: 7 Date: Tue, 16 Feb 2016 21:48:04 +0100 From: Michael Stahl <mstahl@redhat.com> To: libreoffice@lists.freedesktop.org Subject: Re: Problem Building Libreoffice on Linux Message-ID: <na01u4$ffm$1@ger.gmane.org> Content-Type: text/plain; charset=utf-8 On 16.02.2016 18:05, Pranav Ganorkar wrote:Hi, I am trying to build Libreoffice on linux but it fails at this point:/bin/sh: line 1: 23247 Segmentation fault (core dumped)well clearly it crashed, only question is why...Error: a unit test failed, please do one of: make CppunitTest_svgio CPPUNITTRACE="gdb --args" # for interactive debugging on Linuxtry that and when it crashes type "bt" and post the backtrace. ------------------------------ Message: 8 Date: Tue, 16 Feb 2016 21:22:17 +0000 From: Ken Moffat <zarniwhoop@ntlworld.com> To: libreoffice@lists.freedesktop.org Subject: Build failures in unit test when firebird is enabled Message-ID: <20160216212217.GB15353@milliways> Content-Type: text/plain; charset="utf-8" If this gets through, please Cc me on replies, I'm not subscribed. Was going to raise a bug, but apparently bugs in unit tests should be sent to this list. This is on 5.1.0.3, but I saw similar on 5.0 - at that time, I needed the app and I hadn't built gdb. Found a few references, and people building with firebird disabled, looks like the problem hits some people from time to time. This is on an i7 haswell. I recompiled LO with the debug information, but everything else on the system has been stripped. The error message is: [build DEP] LNK:CppunitTest/libtest_sw_ooxmlexport.so [build LNK] CppunitTest/libtest_sw_ooxmlexport.so Fatal exception: Signal 6 Stack: /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3(+0x396c0)[0x2b4bf344a6c0] /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3(+0x39a53)[0x2b4bf344aa53] /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3(+0x39b88)[0x2b4bf344ab88] /lib/libc.so.6(+0x33610)[0x2b4bf3e8d610] /lib/libc.so.6(gsignal+0x38)[0x2b4bf3e8d588] /lib/libc.so.6(abort+0x16a)[0x2b4bf3e8ea0a] /lib/libc.so.6(+0x77970)[0x2b4bf3ed1970] /scratch/working/libreoffice-5.1.0.3/instdir/program/libfbembed.so.2.5(+0x5751f)[0x2b4bfb1dd51f] /lib/libpthread.so.0(+0x7404)[0x2b4bf4409404] /lib/libc.so.6(clone+0x6d)[0x2b4bf3f4302d] It looks like /scratch/working/libreoffice-5.1.0.3/workdir/LinkTarget/Executable/cppunittester generated a core file at /scratch/working/libreoffice-5.1.0.3/workdir/CppunitTest/dbaccess_firebird_test.test.core/core Backtraces: [New LWP 28212] [New LWP 28096] [New LWP 28204] [New LWP 28215] [New LWP 28095] I'll attach the rest of the log, not sure if it is useful. My configure options (this is Beyond Linuxfromscratch) were reported as: Running ./configure with '--prefix=/usr --sysconfdir=/etc --with-vendor=BLFS --with-lang=fr en-GB --with-help --with-myspell-dicts --with-alloc=system --without-java --disable-dconf --disable-odk --disable-postgresql-sdbc --enable-release-build=yes --enable-python=system --with-system-boost --without-system-dicts --with-system-cairo --with-system-curl --with-system-expat --with-system-graphite --with-system-harfbuzz --with-system-icu --with-system-jpeg --with-system-lcms2 --with-system-libpng --with-system-libxml --with-system-neon --with-system-npapi-headers --with-system-nss --with-system-openssl --with-system-poppler --with-system-redland --with-system-zlib --with-parallelism=8 --srcdir=/scratch/working/libreoffice-5.1.0.3 --enable-option-checking=fatal' ĸen -- This email was written using 100% recycled letters. -------------- next part -------------- [build DEP] LNK:CppunitTest/libtest_sw_ooxmlexport.so [build LNK] CppunitTest/libtest_sw_ooxmlexport.so Fatal exception: Signal 6 Stack: /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3(+0x396c0)[0x2b4bf344a6c0] /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3(+0x39a53)[0x2b4bf344aa53] /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3(+0x39b88)[0x2b4bf344ab88] /lib/libc.so.6(+0x33610)[0x2b4bf3e8d610] /lib/libc.so.6(gsignal+0x38)[0x2b4bf3e8d588] /lib/libc.so.6(abort+0x16a)[0x2b4bf3e8ea0a] /lib/libc.so.6(+0x77970)[0x2b4bf3ed1970] /scratch/working/libreoffice-5.1.0.3/instdir/program/libfbembed.so.2.5(+0x5751f)[0x2b4bfb1dd51f] /lib/libpthread.so.0(+0x7404)[0x2b4bf4409404] /lib/libc.so.6(clone+0x6d)[0x2b4bf3f4302d] It looks like /scratch/working/libreoffice-5.1.0.3/workdir/LinkTarget/Executable/cppunittester generated a core file at /scratch/working/libreoffice-5.1.0.3/workdir/CppunitTest/dbaccess_firebird_test.test.core/core Backtraces: [New LWP 28212] [New LWP 28096] [New LWP 28204] [New LWP 28215] [New LWP 28095] warning: Could not load shared library symbols for linux-vdso.so.1. Do you need "set solib-search-path" or "set sysroot"? [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/libthread_db.so.1". Core was generated by `/scratch/working/libreoffice-5.1.0.3/workdir/LinkTarget/Executable/cppunitteste'. Program terminated with signal SIGABRT, Aborted. #0 0x00002b4bf3e8d588 in raise () from /lib/libc.so.6 [Current thread is 1 (Thread 0x2b4bfee4c700 (LWP 28212))] warning: File "/scratch/working/libreoffice-5.1.0.3/instdir/program/ libuno_sal.so.3-gdb.py" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load". To enable execution of this file add add-auto-load-safe-path /scratch/working/libreoffice-5.1.0.3/instdir/program/ libuno_sal.so.3-gdb.py line to your configuration file "/root/.gdbinit". To completely disable this security protection add set auto-load safe-path / line to your configuration file "/root/.gdbinit". For more information about this security protection see the "Auto-loading safe path" section in the GDB manual. E.g., run from the shell: info "(gdb)Auto-loading safe path" warning: File "/scratch/working/libreoffice-5.1.0.3/instdir/program/ libuno_cppu.so.3-gdb.py" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load". warning: File "/scratch/working/libreoffice-5.1.0.3/instdir/program/ libtllo.so-gdb.py" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load". warning: File "/scratch/working/libreoffice-5.1.0.3/instdir/program/ libbasegfxlo.so-gdb.py" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load". warning: File "/scratch/working/libreoffice-5.1.0.3/instdir/program/ libsvllo.so-gdb.py" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load". Thread 5 (Thread 0x2b4bf3473b80 (LWP 28095)): #0 0x00002b4bf4411405 in do_futex_wait () from /lib/libpthread.so.0 No symbol table info available. #1 0x00002b4bf44114cf in __new_sem_wait_slow () from /lib/libpthread.so.0 No symbol table info available. #2 0x00002b4bf4411582 in sem_timedwait () from /lib/libpthread.so.0 No symbol table info available. #3 0x00002b4bfb509b58 in Firebird::SignalSafeSemaphore::tryEnter (this=this@entry=0x2b4bfd1f8228, seconds=seconds@entry=3, milliseconds=3000, milliseconds@entry=0) at ../src/common/classes/semaphore.cpp:171 rc = <optimized out> timeout = {tv_sec = 1455650772, tv_nsec = 149595000} errcode = <optimized out> #4 0x00002b4bfb3eb026 in Jrd::ConfigStorage::ConfigStorage (this=0x2b4bfd1f71f0) at ../src/jrd/trace/TraceConfigStorage.cpp:140 filename = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "fb_trace\000\223\037\364K+\000\000<a\360\363K+\000\000\t\000 \000K+\000", stringBuffer = 0x7ffc3512bc48 "fb_trace", stringLength = 8, bufferSize = 32}, <No data fields>} status = {8, 47601122541568, 200, 140721198906664, 140721198906660, 1, 47605218251712, 47605369196576, 4232, 0, 47605340566592, 47605398980352, 140721198906672, 47605338898884, 47605369196744, 47601122541568, 140721198906712, 140721198906704, 140721198906736, 47605369249448} guard = {m_storage = 0x2b4bfd1f71f0} #5 0x00002b4bfb3eb72f in Jrd::StorageInstance::getStorage (this=0x2b4bfd1f9ea8) at ../src/jrd/trace/TraceConfigStorage.cpp:671 No locals. #6 0x00002b4bfb3ee6eb in Jrd::TraceManager::getStorage () at ../src/jrd/trace/../../jrd/trace/TraceManager.h:60 No locals. #7 Jrd::TraceManager::init (this=this@entry=0x2b4bfee56818) at ../src/jrd/trace/TraceManager.cpp:125 No locals. #8 0x00002b4bfb3ee752 in Jrd::TraceManager::TraceManager (this=0x2b4bfee56818, in_att=<optimized out>) at ../src/jrd/trace/TraceManager.cpp:91 No locals. #9 0x00002b4bfb32f3d0 in Jrd::Attachment::Attachment (this=0x2b4bfee543e0, pool=0x2b4bfee563f0, dbb=<optimized out>) at ../src/jrd/jrd.cpp:5683 No locals. #10 0x00002b4bfb32f9dc in Jrd::Attachment::create (dbb=0x2b4bfee5adc0) at ../src/jrd/../jrd/jrd.h:243 attachment = <optimized out> #11 create_attachment (options=..., dbb=0x2b4bfee5adc0, alias_name=...) at ../src/jrd/jrd.cpp:5302 guard = {lock = 0x2b4bfd1fa8d8} dbbGuard = {<Firebird::ExecuteWithLock> = {_vptr.ExecuteWithLock = 0x2b4bfb674de8 <vtable for Jrd::Database::SyncGuard+16>}, dbb = 0x2b4bfee5adc0, ast = false, sync = 0x2b4bfd1f8358} attachment = 0x0 #12 init (tdbb=tdbb@entry=0x7ffc3512c3b0, expanded_filename=..., alias_name=..., options=..., initGuard=..., attach_flag=<optimized out>) at ../src/jrd/jrd.cpp:5218 listGuard = {lock = 0x2b4bfd1fa808} dbb = <optimized out> first_rand = false first_rand_value = 478944433 #13 0x00002b4bfb334534 in jrd8_create_database (user_status=0x7ffc3512cde0, filename=0x2b4bfd1f90a8 "/tmp/lu28095psvtvd.tmp/firebird.fdb", handle=0x7ffc3512c898, dpb_length=<optimized out>, dpb=0x7ffc3512cae0 "\001M") at ../src/jrd/jrd.cpp:2083 initGuard = {ref = {ptr = 0x2b4bfd1f8308}, entered = true} page_size = <optimized out> pageSpace = <optimized out> first_dbb_file = <optimized out> dbbHolder = {<Jrd::Database::SyncGuard> = {<Firebird::ExecuteWithLock> = {_vptr.ExecuteWithLock = 0x2b4bfd1ed020}, dbb = 0x20676e697373694d, ast = 99, sync = 0x6966206e6f697461}, <Firebird::SubsystemContextPoolHolder<Jrd::thread_db, Firebird::MemoryPool>> = {<Firebird::ContextPoolHolder> = {savedPool = 0x7f00203a656c}, savedThreadData = 0x2b4bfd1f9200, savedPool = 0x40003d}, tdbb = 0x7ffc35120001} tdbb = {local_status = {10, 14, 0, 14, 47605369196576, 47605338901760, 45, 140721198908536, 34, 140721198908216, 2097152, 0, 47605369196576, 0, 140721198908656, 47605338894772, 34, 140721198908280, 2097152, 0}, context = {<ThreadData> = {threadDataPriorContext = 0x0, threadDataType = ThreadData::tddDBB}, tdbb_default = 0x0, database = 0x2b4bfee5adc0, attachment = 0x0, transaction = 0x0, request = 0x0, reqStat = 0x2b4bfd1fa438, traStat = 0x2b4bfd1fa438, attStat = 0x2b4bfd1fa438, dbbStat = 0x2b4bfee5b2f0, tdbb_status_vector = 0x7ffc3512cde0, tdbb_quantum = 100, tdbb_flags = 0, tdbb_temp_traid = 0, tdbb_latch_count = 0, tdbb_latches = {que_forward = 0x7ffc3512c420, que_backward = 0x7ffc3512c420}}} guardDbInit = {m_mutex = 0x2b4bfd1fa870, m_locked = 1} userId = {usr_user_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\001\000\347\005", '\000' <repeats 12 times>, "\016\000\000\000\000\000\000\000\310\304\022\065\374\177\000", stringBuffer = 0x7ffc3512c228 "\001", stringLength = 1, bufferSize = 32}, <No data fields>}, usr_sql_role_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000G\347\005\000\000\000\000S&\354\363K+\000\000\000\000\000\000\000\000\000\000\240\305\022\065\374\177\000", stringBuffer = 0x7ffc3512c260 "", stringLength = 0, bufferSize = 32}, <No data fields>}, usr_project_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\202\035\373K+\000\000\200\304\022\065\374\177\000\000\260\306\022\065\374\177\000\000\000\000\000\000\000\000\000", stringBuffer = 0x7ffc3512c298 "", stringLength = 0, bufferSize = 32}, <No data fields>}, usr_org_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\303\022\065\374\177\000\000\070\304\022\065\374\177\000\000\t\000\000\000\000\000\000\000\004\000\000\000\000\000\000", stringBuffer = 0x7ffc3512c2d0 "", stringLength = 0, bufferSize = 32}, <No data fields>}, usr_user_id = 65535, usr_group_id = 65535, usr_node_id = 0, usr_flags = 0, usr_fini_sec_db = false} options = {dpb_wal_action = 0, dpb_sweep_interval = -1, dpb_page_buffers = 0, dpb_set_page_buffers = false, dpb_buffers = 75, dpb_verify = 0, dpb_sweep = 0, dpb_dbkey_scope = 0, dpb_page_size = 0, dpb_activate_shadow = false, dpb_delete_shadow = false, dpb_no_garbage = false, dpb_shutdown = 0, dpb_shutdown_delay = 0, dpb_online = 0, dpb_force_write = false, dpb_set_force_write = false, dpb_no_reserve = false, dpb_set_no_reserve = false, dpb_interp = 0, dpb_single_user = false, dpb_overwrite = false, dpb_sec_attach = false, dpb_disable_wal = false, dpb_gsec_attach = false, dpb_connect_timeout = 0, dpb_dummy_packet_interval = 0, dpb_db_readonly = false, dpb_set_db_readonly = false, dpb_gfix_attach = false, dpb_gstat_attach = false, dpb_sql_dialect = 3, dpb_set_db_sql_dialect = 0, dpb_remote_pid = 0, dpb_no_db_triggers = false, dpb_gbak_attach = false, dpb_trusted_role = false, dpb_utf8_filename = true, dpb_ext_call_depth = 0, dpb_flags = 0, dpb_sys_user_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\304\022\065\374\177\000\000x\304\022\065\374\177\000\000\016\000 \000\374\177\000\000\360\306\022\065\374\177\000", stringBuffer = 0x7ffc3512c490 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_user_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000home/ken/docs\000\000:\243P\373K+\000\000\000\000\000\000\000\000\000", stringBuffer = 0x7ffc3512c4c8 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_password = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000illiways:/home/ken/docs\000\000H\373K+\000", stringBuffer = 0x7ffc3512c500 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_password_enc = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\320\036\375K+\000\000\370\322\036\375K+\000\000\350\322\036\375K+\000\000P\220\037\375K+\000", stringBuffer = 0x7ffc3512c538 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_role_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\275\000\000\000\000\000\000\370\322\036\375K+\000\000 \320\036\375K+\000\000\310\320\036\375K+\000", stringBuffer = 0x7ffc3512c570 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_journal = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000uP\373K+\000\000\300\305\022\065\374\177\000\000\371^P\373\000\000\000\000\340\315\022\065\374\177\000", stringBuffer = 0x7ffc3512c5a8 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_key = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\305\022\065\374\177\000\000\365|P\373K+\000\000\000\310\022\065\374\177\000\000bqI\373K+\000", stringBuffer = 0x7ffc3512c5e0 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_lc_ctype = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\310\022\065\374\177\000\000\000\307\344\376K+\000\000\200\220\035\373K+\000\000 \320\036\375K+\000", stringBuffer = 0x7ffc3512c618 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_working_directory = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\000\000\000\000\000\000\000\070\306\022\065\374\177\000\000\000\000 \000\000\000\000\000\343\312\022\065\374\177\000", stringBuffer = 0x7ffc3512c650 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_set_db_charset = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\366\350\363K+\000\000\000\000\000\000\000\000\000\000`\220\037\375K+\000\000#\000\064\000\374\177\000", stringBuffer = 0x7ffc3512c688 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_network_protocol = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\307\022\065\374\177\000\000\b\031Q\373K+\000\000\000\307\022\065\374\177\000\000\270\306\022\065\374\177\000", stringBuffer = 0x7ffc3512c6c0 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_remote_address = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\320\036\375K+\000\000\001", '\000' <repeats 12 times>, "+\000\000\000\000\000\000\000\000\000", stringBuffer = 0x7ffc3512c6f8 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_trusted_login = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\001\000\000?\001\003I\001\001\320\036\375K+\000\000@", '\000' <repeats 14 times>, stringBuffer = 0x7ffc3512c730 "\001", stringLength = 1, bufferSize = 32}, <No data fields>}, dpb_remote_process = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\201P\373K+\000\000\310\320\036\375K+\000\000N\026\036\373K+\000\000\260\307\022\065\374\177\000", stringBuffer = 0x7ffc3512c768 "", stringLength = 0, bufferSize = 32}, <No data fields>}, dpb_org_filename = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\000\000\000\000\000\000\000@\000\000\000\000\000\000\000\t\000\000\000\000\000\000\000\200\000\000\000\000\000\000", stringBuffer = 0x7ffc3512c7a0 "", stringLength = 0, bufferSize = 32}, <No data fields>}} file_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\000\000\000\000\000\000\000@\236\347\005\000\000\000\000\030", '\000' <repeats 14 times>, stringBuffer = 0x2b4bfd1f9058 "/tmp/lu28095psvtvd.tmp/firebird.fdb", stringLength = 35, bufferSize = 64}, <No data fields>} expanded_name = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\320\036\375K+\000\000\000\237\347\005\000\000\000\000\371(\355\363K+\000\000\260\237\347\005\000\000\000", stringBuffer = 0x2b4bfd1f9008 "/tmp/lu28095psvtvd.tmp/firebird.fdb", stringLength = 35, bufferSize = 64}, <No data fields>} is_alias = false vdn = <optimized out> dbb = 0x0 attachment = 0x0 #14 0x00002b4bfb1f1083 in isc_create_database (user_status=<optimized out>, file_length=<optimized out>, file_name=<optimized out>, public_handle=0x5e79b30, dpb_length=<optimized out>, dpb=<optimized out>) at ../src/jrd/why.cpp:2068 org_filename = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = '\000' <repeats 16 times>, "w\000\000\000|\000\000\000?\000\000\000\000\000\000", stringBuffer = 0x2b4bfd1f90f8 "/tmp/lu28095psvtvd.tmp/firebird.fdb", stringLength = 35, bufferSize = 52}, <No data fields>} newDpb = {<Firebird::ClumpletReader> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, _vptr.ClumpletReader = 0x2b4bfb677688 <vtable for Firebird::ClumpletWriter+16>, cur_offset = 6, kind = Firebird::ClumpletReader::Tagged, spbState = 0 '\000', static_buffer = 0x0, static_buffer_end = 0x0}, sizeLimit = 1024, dynamic_buffer = {<Firebird::Array<unsigned char, Firebird::InlineStorage<unsigned char, 128ul> >> = {<Firebird::InlineStorage<unsigned char, 128ul>> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, buffer = "\001M\000?\001\003I\001\001\320\022\065\374\177\000\000H\232\347\005\000\000\000\000(C\355\363K+\000\000#\000\000\000\000\000\000\000)LC\363K+\000\000S\000\000\000\000\000\000\000#\000\000\000\000\000\000\000#\000\000\000\000\000\000\000\324lC\363K+\000\000\000\000\000\000\000\000\000\000\350\235\347\005\000\000\000\000[\000\000\000n\000\000\000\024(\355\363K+\000\000\000\000\000\000\000\000\000\000p\314\022\065\374\177\000"}, count = 9, capacity = 128, data = 0x7ffc3512cae0 "\001M"}, <No data fields>}} expanded_filename = {<Firebird::AbstractString> = {<Firebird::AutoStorage> = {<Firebird::PermanentStorage> = {pool = @0x2b4bfd1ed020}, <No data fields>}, static npos = 18446744073709551615, inlineBuffer = "\000\311\022\065\374\177\000\000\031\000\000\000\000\000\000\000\024(\355\363K+\000\000\360\233\347\005\000\000\000", stringBuffer = 0x2b4bfd1f90a8 "/tmp/lu28095psvtvd.tmp/firebird.fdb", stringLength = 35, bufferSize = 64}, <No data fields>} entryGuard = {<Firebird::FpeControl> = {savedMask = {__control_word = 895, __glibc_reserved1 = 65535, __status_word = 0, __glibc_reserved2 = 65535, __tags = 65535, __glibc_reserved3 = 65535, __eip = 4083682423, __cs_selector = 0, __opcode = 0, __glibc_reserved4 = 0, __data_offset = 890421736, __data_selector = 0, __glibc_reserved5 = 65535, __mxcsr = 8096}}, att = {ptr = 0x0}, status = 0x0} utfFilename = <optimized out> unescaped = <optimized out> ptr = 0x7ffc3512cde0 temp = {140721198909952, 140721198909936, 25, 47605214952304, 140721198910208, 0, 57, 140721198909936, 25, 47605214948665, 99064752, 47605265109982, 140721198909952, 140721198909984, 140721198910076, 99068388, 99064760, 56, 22, 140721198910080} handle = 0x0 attachment = {ptr = 0x0} n = 1 status = {local_status = {140721198910076, 99068388, 140721198910208, 140721198910072, 140721198910076, 140721198910208, 140721198910072, 47605203825326, 99064816, 47605203829976, 99068388, 47605214947348, 76, 47605214952304, 140721198910208, 12682347304, 48, 0, 99068388, 99068336}, local_vector = 0x7ffc3512cde0} #15 0x00002b4bf9b0f833 in connectivity::firebird::Connection::construct(rtl::OUString const&, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libfirebird_sdbclo.so No symbol table info available. #16 0x00002b4bf9b20dbd in connectivity::firebird::FirebirdDriver::connect(rtl::OUString const&, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libfirebird_sdbclo.so No symbol table info available. #17 0x00002b4bfec3f7af in drivermanager::OSDBCDriverManager::getConnectionWithInfo(rtl::OUString const&, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libsdbc2.so No symbol table info available. #18 0x00002b4bfa6225b6 in dbaccess::ODatabaseSource::buildLowLevelConnection(rtl::OUString const&, rtl::OUString const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libdbalo.so No symbol table info available. #19 0x00002b4bfa625951 in dbaccess::ODatabaseSource::buildIsolatedConnection(rtl::OUString const&, rtl::OUString const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libdbalo.so No symbol table info available. #20 0x00002b4bfa625f20 in dbaccess::OSharedConnectionManager::getConnection(rtl::OUString const&, rtl::OUString const&, rtl::OUString const&, com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue> const&, dbaccess::ODatabaseSource*) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libdbalo.so No symbol table info available. #21 0x00002b4bfa6264cd in dbaccess::ODatabaseSource::getConnection(rtl::OUString const&, rtl::OUString const&, bool) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libdbalo.so No symbol table info available. #22 0x00002b4bfa626960 in dbaccess::ODatabaseSource::getConnection(rtl::OUString const&, rtl::OUString const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libdbalo.so No symbol table info available. #23 0x00002b4bf9a7e800 in DBTestBase::getConnectionForDocument(com::sun::star::uno::Reference<com::sun::star::sdb::XOfficeDatabaseDocument>&) () from /scratch/working/libreoffice-5.1.0.3/workdir/LinkTarget/CppunitTest/libtest_dbaccess_firebird_test.so No symbol table info available. #24 0x00002b4bf9a7eb27 in FirebirdTest::testEmptyDBConnection() () from /scratch/working/libreoffice-5.1.0.3/workdir/LinkTarget/CppunitTest/libtest_dbaccess_firebird_test.so No symbol table info available. #25 0x00002b4bf33f3e12 in CppUnit::TestCaseMethodFunctor::operator()() const () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #26 0x00002b4bf3469843 in (anonymous namespace)::Prot::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) () from /scratch/working/libreoffice-5.1.0.3/workdir/LinkTarget/Library/unoexceptionprotector.so No symbol table info available. #27 0x00002b4bf33eabe0 in CppUnit::DefaultProtector::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #28 0x00002b4bf33f11b2 in CppUnit::ProtectorChain::protect(CppUnit::Functor const&, CppUnit::ProtectorContext const&) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #29 0x00002b4bf33f940e in CppUnit::TestResult::protect(CppUnit::Functor const&, CppUnit::Test*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #30 0x00002b4bf33f3c00 in CppUnit::TestCase::run(CppUnit::TestResult*) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #31 0x00002b4bf33f4123 in CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #32 0x00002b4bf33f403e in CppUnit::TestComposite::run(CppUnit::TestResult*) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #33 0x00002b4bf33f4123 in CppUnit::TestComposite::doRunChildTests(CppUnit::TestResult*) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #34 0x00002b4bf33f403e in CppUnit::TestComposite::run(CppUnit::TestResult*) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #35 0x00002b4bf33f9342 in CppUnit::TestResult::runTest(CppUnit::Test*) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #36 0x00002b4bf33fb90e in CppUnit::TestRunner::run(CppUnit::TestResult&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) () from /scratch/working/libreoffice-5.1.0.3/workdir/UnpackedTarball/cppunit/src/cppunit/.libs/libcppunit-1.13.so.0 No symbol table info available. #37 0x0000000000403d72 in (anonymous namespace)::ProtectedFixtureFunctor::run() const () No symbol table info available. #38 0x00000000004046f0 in sal_main() () No symbol table info available. #39 0x000000000040325b in main () No symbol table info available. Thread 4 (Thread 0x2b4bff05d700 (LWP 28215)): #0 0x00002b4bf4411c5c in __lll_lock_wait () from /lib/libpthread.so.0 No symbol table info available. #1 0x00002b4bf440bb12 in pthread_mutex_lock () from /lib/libpthread.so.0 No symbol table info available. #2 0x00002b4bf344450e in osl_acquireMutex () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3 No symbol table info available. #3 0x00002b4bf738faed in SalYieldMutex::acquire() () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libvcllo.so No symbol table info available. #4 0x00002b4bf73242a1 in VCLExceptionSignal_impl(void*, oslSignalInfo*) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libvcllo.so No symbol table info available. #5 0x00002b4bf344aaf6 in SignalHandlerFunction(int) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3 No symbol table info available. #6 <signal handler called> No symbol table info available. #7 0x00002b4bf3e8d588 in raise () from /lib/libc.so.6 No symbol table info available. #8 0x00002b4bf3e8ea0a in abort () from /lib/libc.so.6 No symbol table info available. #9 0x00002b4bf3ed1970 in malloc_printerr () from /lib/libc.so.6 No symbol table info available. #10 0x00002b4bfb1dd51f in (anonymous namespace)::threadStart (arg=0x2b4bfd1f9478) at ../src/jrd/ThreadStart.cpp:138 mainThreadContext = {savedPool = 0x0} localArgs = {routine = 0x2b4bfb3ea0d0 <Jrd::ConfigStorage::touchThread(void*)>, arg = 0x2b4bfd1f71f0} #11 0x00002b4bf4409404 in start_thread () from /lib/libpthread.so.0 No symbol table info available. #12 0x00002b4bf3f4302d in clone () from /lib/libc.so.6 No symbol table info available. Thread 3 (Thread 0x2b4bfe270700 (LWP 28204)): #0 0x00002b4bf4411c5c in __lll_lock_wait () from /lib/libpthread.so.0 No symbol table info available. #1 0x00002b4bf440bb12 in pthread_mutex_lock () from /lib/libpthread.so.0 No symbol table info available. #2 0x00002b4bf344450e in osl_acquireMutex () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3 No symbol table info available. #3 0x00002b4bf738faed in SalYieldMutex::acquire() () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libvcllo.so No symbol table info available. #4 0x00002b4bfd3b3eb4 in (anonymous namespace)::JobExecutor::notifyEvent(com::sun::star::document::EventObject const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libfwklo.so No symbol table info available. #5 0x00002b4bfac7830b in (anonymous namespace)::SfxGlobalEvents_Impl::implts_notifyJobExecution(com::sun::star::document::EventObject const&) [clone .constprop.70] () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libsfxlo.so No symbol table info available. #6 0x00002b4bfac7929c in (anonymous namespace)::SfxGlobalEvents_Impl::documentEventOccured(com::sun::star::document::DocumentEvent const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libsfxlo.so No symbol table info available. #7 0x00002b4bfa650fce in dbaccess::DocumentEventNotifier_Impl::impl_notifyEvent_nothrow(com::sun::star::document::DocumentEvent const&) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libdbalo.so No symbol table info available. #8 0x00002b4bf4938e7a in comphelper::AsyncEventNotifier::execute() () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libcomphelper.so No symbol table info available. #9 0x00002b4bf359ebc6 in salhelper::Thread::run() () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_salhelpergcc3.so.3 No symbol table info available. #10 0x00002b4bf359edca in threadFunc () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_salhelpergcc3.so.3 No symbol table info available. #11 0x00002b4bf344d7c7 in osl_thread_start_Impl(void*) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3 No symbol table info available. #12 0x00002b4bf4409404 in start_thread () from /lib/libpthread.so.0 No symbol table info available. #13 0x00002b4bf3f4302d in clone () from /lib/libc.so.6 No symbol table info available. Thread 2 (Thread 0x2b4bf6c27700 (LWP 28096)): #0 0x00002b4bf440f388 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib/libpthread.so.0 No symbol table info available. #1 0x00002b4bf342726b in rtl_cache_wsupdate_all(void*) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3 No symbol table info available. #2 0x00002b4bf4409404 in start_thread () from /lib/libpthread.so.0 No symbol table info available. #3 0x00002b4bf3f4302d in clone () from /lib/libc.so.6 No symbol table info available. Thread 1 (Thread 0x2b4bfee4c700 (LWP 28212)): #0 0x00002b4bf3e8d588 in raise () from /lib/libc.so.6 No symbol table info available. #1 0x00002b4bf3e8ea0a in abort () from /lib/libc.so.6 No symbol table info available. #2 0x00002b4bf344aa58 in CallSystemHandler(int) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3 No symbol table info available. #3 0x00002b4bf344ab88 in SignalHandlerFunction(int) () from /scratch/working/libreoffice-5.1.0.3/instdir/program/libuno_sal.so.3 No symbol table info available. #4 <signal handler called> No symbol table info available. #5 0x00002b4bf3e8d588 in raise () from /lib/libc.so.6 No symbol table info available. #6 0x00002b4bf3e8ea0a in abort () from /lib/libc.so.6 No symbol table info available. #7 0x00002b4bf3ed1970 in malloc_printerr () from /lib/libc.so.6 No symbol table info available. #8 0x00002b4bfb1dd51f in (anonymous namespace)::threadStart (arg=0x2b4bfd1f95d0) at ../src/jrd/ThreadStart.cpp:138 mainThreadContext = {savedPool = 0x0} localArgs = {routine = 0x2b4bfb1e2670 <(anonymous namespace)::shutdownThread(void*)>, arg = 0x0} #9 0x00002b4bf4409404 in start_thread () from /lib/libpthread.so.0 No symbol table info available. #10 0x00002b4bf3f4302d in clone () from /lib/libc.so.6 No symbol table info available. Error: a unit test failed, please do one of: make CppunitTest_dbaccess_firebird_test CPPUNITTRACE="gdb --args" # for interactive debugging on Linux make CppunitTest_dbaccess_firebird_test VALGRIND=memcheck # for memory checking make CppunitTest_dbaccess_firebird_test DEBUGCPPUNIT=TRUE # for exception catching /scratch/working/libreoffice-5.1.0.3/solenv/gbuild/CppunitTest.mk:90: recipe for target '/scratch/working/libreoffice-5.1.0.3/workdir/CppunitTest/dbaccess_firebird_test.test' failed make[1]: *** [/scratch/working/libreoffice-5.1.0.3/workdir/CppunitTest/dbaccess_firebird_test.test] Error 1 make[1]: *** Waiting for unfinished jobs.... Makefile:244: recipe for target 'build' failed make: *** [build] Error 2 ------------------------------ Message: 9 Date: Wed, 17 Feb 2016 01:28:32 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 64575] Photo Album: Better Image Layout Message-ID: <bug-64575-19970-nApy4oSdKC@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=64575 --- Comment #9 from BezaM <mogesb@berea.edu> --- Yes it does! Thank you for the response! -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/b5ec10fd/attachment-0001.html------------------------------ Message: 10 Date: Wed, 17 Feb 2016 07:14:41 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 40469] Modifed Frame Style Options Not Preserved, "Keep Ratio" Option Unavailable Message-ID: <bug-40469-19970-XLo1WEVjS7@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=40469 --- Comment #17 from jan iversen <jani@documentfoundation.org> --- Andrei@ A polite ping are you still working on this ? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/56e42767/attachment-0001.html------------------------------ Message: 11 Date: Wed, 17 Feb 2016 07:16:14 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 45615] Implement additional 3d slideshow transitions Message-ID: <bug-45615-19970-m2mo5nxlPj@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=45615 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #7 from jan iversen <jani@documentfoundation.org> --- Andrzej: A polite ping are you still working on this ? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/2da48faf/attachment-0001.html------------------------------ Message: 12 Date: Wed, 17 Feb 2016 07:17:20 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 34882] Special character favorites Message-ID: <bug-34882-19970-oL04rZImVk@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=34882 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #20 from jan iversen <jani@documentfoundation.org> --- Steve@ A polite ping, are you still working on this ? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/145efd66/attachment-0001.html------------------------------ Message: 13 Date: Wed, 17 Feb 2016 07:18:10 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 63154] replace tools/solar.h macros with osl versions Message-ID: <bug-63154-19970-MaxggMEAAx@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=63154 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #71 from jan iversen <jani@documentfoundation.org> --- Marcos: a polite ping, are you still working on this? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/f4f2b43a/attachment-0001.html------------------------------ Message: 14 Date: Wed, 17 Feb 2016 07:19:51 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 82319] use modern OpenGL for OpenGL canvas Message-ID: <bug-82319-19970-LJqmepabSB@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=82319 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEW CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #6 from jan iversen <jani@documentfoundation.org> --- Changes status ASSIGNED, since it was not -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/74b04b2e/attachment-0001.html------------------------------ Message: 15 Date: Wed, 17 Feb 2016 07:20:53 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 89387] improve performance for some matrix operations Message-ID: <bug-89387-19970-aOCUld47L5@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=89387 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #29 from jan iversen <jani@documentfoundation.org> --- A polite ping, are you still working on this ? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/52249f18/attachment-0001.html------------------------------ Message: 16 Date: Wed, 17 Feb 2016 07:22:35 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 30732] Character formatting not retained in entries of TOC, table lists, etc. Message-ID: <bug-30732-19970-oUNGU5ISmr@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=30732 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #36 from jan iversen <jani@documentfoundation.org> --- A polite ping, are you still working on this ? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/94e49893/attachment-0001.html------------------------------ Message: 17 Date: Wed, 17 Feb 2016 07:28:00 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 39749] calc unit test writing Message-ID: <bug-39749-19970-hIZOikrIxz@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=39749 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEW CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | Assignee|kadertarlan1@gmail.com |libreoffice-bugs@lists.free | |desktop.org --- Comment #9 from jan iversen <jani@documentfoundation.org> --- Very nice that you work on this task. It is however a task where multiple can work in parallel, so I am unassigning it (but remembering you work on it) -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/7b8ee556/attachment-0001.html------------------------------ Message: 18 Date: Wed, 17 Feb 2016 07:28:46 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 77667] Remove gcc3 workaround where it could handle instantiated objects as parameters Message-ID: <bug-77667-19970-5CDHRAuBpr@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=77667 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEW --- Comment #5 from jan iversen <jani@documentfoundation.org> --- Removing assigned as it is not. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/7e4265d0/attachment-0001.html------------------------------ Message: 19 Date: Wed, 17 Feb 2016 07:28:57 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 77667] Remove gcc3 workaround where it could handle instantiated objects as parameters Message-ID: <bug-77667-19970-Dubb9uI1he@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=77667 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/564b1c66/attachment-0001.html------------------------------ Message: 20 Date: Wed, 17 Feb 2016 07:30:19 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 67544] FILESAVE: Slide transistion sound(other sound) is not included in presentation file Message-ID: <bug-67544-19970-M8wr61a05U@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=67544 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #12 from jan iversen <jani@documentfoundation.org> --- Removing assigned as it is not There are currently no code pointer ? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/fea0dc4e/attachment-0001.html------------------------------ Message: 21 Date: Wed, 17 Feb 2016 07:35:00 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 97640] Beanshell Editor: Use fixed-width font Message-ID: <bug-97640-19970-34ElYdPkUQ@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=97640 Samuel Mehrbrodt (CIB) <Samuel.Mehrbrodt@cib.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/6cdb37b1/attachment-0001.html------------------------------ Message: 22 Date: Wed, 17 Feb 2016 07:36:09 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 97640] Beanshell Editor: Use fixed-width font Message-ID: <bug-97640-19970-ykEQpsc9Qh@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=97640 Commit Notification <libreoffice-commits@lists.freedesktop.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ToBeReviewed |ToBeReviewed target:5.2.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/82810f1c/attachment-0001.html------------------------------ Message: 23 Date: Wed, 17 Feb 2016 07:36:10 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 97640] Beanshell Editor: Use fixed-width font Message-ID: <bug-97640-19970-c093NRTDwj@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=97640 --- Comment #11 from Commit Notification < libreoffice-commits@lists.freedesktop.org> --- Chirag Manwani committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=38969497cbccacf2999d92b06a85946c1f71be05 tdf#97640 Fixed-Width Font for Beanshell Editor It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/6771ff1f/attachment-0001.html------------------------------ Message: 24 Date: Wed, 17 Feb 2016 07:49:12 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 40469] Modifed Frame Style Options Not Preserved, "Keep Ratio" Option Unavailable Message-ID: <bug-40469-19970-B4DOGQbqW6@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=40469 Andrei Furtuna <furtunaster@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|furtunaster@gmail.com |libreoffice-bugs@lists.free | |desktop.org --- Comment #18 from Andrei Furtuna <furtunaster@gmail.com> --- Sorry community, I didn't figure it out. And I'm not working more at this bug. I'm changing the status. (In reply to jan iversen from comment #17)Andrei@ A polite ping are you still working on this ?-- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/f1cb6d4c/attachment-0001.html------------------------------ Message: 25 Date: Wed, 17 Feb 2016 07:54:03 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 30873] Field variables break with additional formats Message-ID: <bug-30873-19970-BVoNx1YyG2@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=30873 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| | jani@documentfoundation.org --- Comment #17 from jan iversen <jani@documentfoundation.org> --- There are no code pointers ? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/8de78b1c/attachment-0001.html------------------------------ Message: 26 Date: Wed, 17 Feb 2016 08:00:19 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 68617] UI: Row/Column Highlight of current selection not showing correctly Message-ID: <bug-68617-19970-YwSUdqFXrF@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=68617 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/a380500c/attachment-0001.html------------------------------ Message: 27 Date: Wed, 17 Feb 2016 08:03:53 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 33467] Mac: Default printer should be taken from the OS when printing Message-ID: <bug-33467-19970-c5WWmoUsAX@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=33467 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | --- Comment #12 from jan iversen <jani@documentfoundation.org> --- We miss code pointer? -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/a38092a9/attachment-0001.html------------------------------ Message: 28 Date: Wed, 17 Feb 2016 08:05:10 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 33831] Media wiki export pictures as files Message-ID: <bug-33831-19970-OWLEFx6ksg@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=33831 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/7bf10590/attachment-0001.html------------------------------ Message: 29 Date: Wed, 17 Feb 2016 08:07:07 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 30873] Field variables break with additional formats Message-ID: <bug-30873-19970-SMCtWTBtQg@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=30873 --- Comment #18 from Akshay Deep <akshaydeepiitr@gmail.com> --- Kindly review this patch submitted for this bug :) https://gerrit.libreoffice.org/#/c/22165/ -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/2c7046d0/attachment-0001.html------------------------------ Message: 30 Date: Wed, 17 Feb 2016 08:15:18 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 97703] EasyHack: Remove empty setUp/tearDown overrides from CppUnit test code Message-ID: <bug-97703-19970-CFZswmUoFW@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=97703 jan iversen <jani@documentfoundation.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|libreoffice@lists.freedeskt | jani@documentfoundation.org |op.org | -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/004f9a05/attachment-0001.html------------------------------ Message: 31 Date: Wed, 17 Feb 2016 08:42:57 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 97654] replace UNO cell types in xlsx import with calc internal ones Message-ID: <bug-97654-19970-KWJ6IhWiaE@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=97654 --- Comment #3 from Commit Notification < libreoffice-commits@lists.freedesktop.org> --- Mohammed Abdul Azeem committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=2c02986b76f26d6f09d5b1f9d209879bfa427ea1 tdf#97654 - replaced UNO cell types in xlsx import with calc internal ones It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/41e03536/attachment-0001.html------------------------------ Message: 32 Date: Wed, 17 Feb 2016 08:42:56 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 97654] replace UNO cell types in xlsx import with calc internal ones Message-ID: <bug-97654-19970-kkgM4cw2TB@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=97654 Commit Notification <libreoffice-commits@lists.freedesktop.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ToBeReviewed |ToBeReviewed target:5.2.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/6a3bfea6/attachment-0001.html------------------------------ Message: 33 Date: Wed, 17 Feb 2016 10:03:05 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 90753] gbuild: Move packages to autoinstallation in scp2 Message-ID: <bug-90753-19970-a0DoMEDpM4@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=90753 Commit Notification <libreoffice-commits@lists.freedesktop.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| |target:5.2.0 -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/3e6c3716/attachment-0001.html------------------------------ Message: 34 Date: Wed, 17 Feb 2016 10:03:07 +0000 From: bugzilla-daemon@bugs.documentfoundation.org To: libreoffice@lists.freedesktop.org Subject: [Bug 90753] gbuild: Move packages to autoinstallation in scp2 Message-ID: <bug-90753-19970-kP1aGYo65V@http.bugs.documentfoundation.org/> Content-Type: text/plain; charset="utf-8" https://bugs.documentfoundation.org/show_bug.cgi?id=90753 --- Comment #2 from Commit Notification < libreoffice-commits@lists.freedesktop.org> --- David Ostrovsky committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=53f0eb12f0fdabc32fee523b0f63691b2342f3f4 tdf#90753 Move Pyuno wizard packages to autoinstall It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback. -- You are receiving this mail because: You are on the CC list for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: < https://lists.freedesktop.org/archives/libreoffice/attachments/20160217/533589e3/attachment-0001.html------------------------------ Message: 35 Date: Wed, 17 Feb 2016 11:55:55 +0100 From: jan iversen <jani@documentfoundation.org> To: Vij <v.vijayakumar@gmail.com> Cc: libreoffice@lists.freedesktop.org Subject: Re: Vijay license statement Message-ID: <722D0377-F803-42C1-B44F-BA7710BC87E7@documentfoundation.org> Content-Type: text/plain; charset=us-ascii WELCOME Thanks for your license statement. I have added you to our wiki: https://wiki.documentfoundation.org/Development/Developers If you want help to get started or have any questions, then please contact me. I am here to help you (and others) in getting their first patch submitted. LibreOffice is a very big program and getting it built, setting up gerrit, and getting the first patch right can be a bit challenging, therefore do not hesitate to email me if you want help. We have made a step by step guide to help you get started: https://wiki.documentfoundation.org/Development/GetInvolved/DeveloperStepByStep rgds Jan Iversen. Sent from my iPad, please excuse any misspellings ------------------------------ Message: 36 Date: Wed, 17 Feb 2016 12:02:34 +0100 From: jan iversen <jani@documentfoundation.org> To: Gaurav Dhingra <gxyd007@yahoo.com> Cc: libreoffice@lists.freedesktop.org Subject: Re: Gaurav Dhingra licence statement Message-ID: <3ED6D73C-36D6-48C7-9543-A3AB1C08B19F@documentfoundation.org> Content-Type: text/plain; charset=us-ascii WELCOME Thanks for your license statement. I have added you to our wiki: https://wiki.documentfoundation.org/Development/Developers If you want help to get started or have any questions, then please contact me. I am here to help you (and others) in getting their first patch submitted. LibreOffice is a very big program and getting it built, setting up gerrit, and getting the first patch right can be a bit challenging, therefore do not hesitate to email me if you want help. We have made a step by step guide to help you get started: https://wiki.documentfoundation.org/Development/GetInvolved/DeveloperStepByStep rgds Jan Iversen. Sent from my iPad, please excuse any misspellings ------------------------------ Message: 37 Date: Wed, 17 Feb 2016 12:07:53 +0100 From: jan iversen <jani@documentfoundation.org> To: Arnold Dumas <arnold@dumas.at> Cc: libreoffice@lists.freedesktop.org Subject: Re: Arnold Dumas licence statement Message-ID: <B4695632-3E41-48B2-BEB1-AB79CA2598D3@documentfoundation.org> Content-Type: text/plain; charset=us-ascii WELCOME Thanks for your license statement. I have added you to our wiki: https://wiki.documentfoundation.org/Development/Developers If you want help to get started or have any questions, then please contact me. I am here to help you (and others) in getting their first patch submitted. LibreOffice is a very big program and getting it built, setting up gerrit, and getting the first patch right can be a bit challenging, therefore do not hesitate to email me if you want help. We have made a step by step guide to help you get started: https://wiki.documentfoundation.org/Development/GetInvolved/DeveloperStepByStep rgds Jan Iversen. Sent from my iPad, please excuse any misspellings ------------------------------ Message: 38 Date: Wed, 17 Feb 2016 12:10:23 +0100 From: jan iversen <jani@documentfoundation.org> To: Chirag Manwani <cmkmanwani@gmail.com> Cc: libreoffice@lists.freedesktop.org Subject: Re: Chirag Manwani license statement Message-ID: <7CB8C43E-AEEB-41E9-8AB8-348DD85AC6F1@documentfoundation.org> Content-Type: text/plain; charset=us-ascii WELCOME Thanks for your license statement. If you want help to get started or have any questions, then please contact me. I am here to help you (and others) in getting their first patch submitted. LibreOffice is a very big program and getting it built, setting up gerrit, and getting the first patch right can be a bit challenging, therefore do not hesitate to email me if you want help. We have made a step by step guide to help you get started: https://wiki.documentfoundation.org/Development/GetInvolved/DeveloperStepByStep rgds Jan Iversen. Sent from my iPad, please excuse any misspellings ------------------------------ Subject: Digest Footer _______________________________________________ LibreOffice mailing list LibreOffice@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice ------------------------------ End of LibreOffice Digest, Vol 66, Issue 24 *******************************************
diff --git a/sw/Module_sw.mk b/sw/Module_sw.mk index 39b466f..b84f982 100644 --- a/sw/Module_sw.mk +++ b/sw/Module_sw.mk @@ -65,7 +65,6 @@ $(eval $(call gb_Module_add_slowcheck_targets,sw,\ CppunitTest_sw_ww8export \ CppunitTest_sw_ww8import \ CppunitTest_sw_rtfexport \ - CppunitTest_sw_rtfimport \ CppunitTest_sw_odfexport \ CppunitTest_sw_odfimport \ CppunitTest_sw_uiwriter \ diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx index b10958e..9c1d81b 100644 --- a/sw/source/uibase/utlui/content.cxx +++ b/sw/source/uibase/utlui/content.cxx @@ -1630,30 +1630,34 @@ void SwContentTree::Display( bool bActive ) pEntry = InsertEntry(sEntry, rImage, rImage, nullptr, bChOnDemand, TREELIST_APPEND, (*ppContentT)); - const sal_uInt16 currPos = pShell->GetOutlinePos(MAXLEVEL); - std::cout << "currPos is : " << currPos << std::endl; - SvTreeListEntry* ppp = First(); - - while( nullptr != (ppp = Next(ppp)) ) - { - std::cout << static_cast<SwOutlineContent*>(ppp->GetUserData())->GetPos() << std::endl; - if(static_cast<SwOutlineContent*>(ppp->GetUserData())->GetPos() == currPos) - { - std::cout << "\tPosition found\n"; - break; - //MakeVisible(pEntry); - //std::cout << "MakeVisible called\n"; - //Select(pEntry); - } + + const sal_uInt16 currPos = pShell->GetOutlinePos(MAXLEVEL); + std::cout << "currPos : " << currPos << std::endl; + SvTreeListEntry* ppp = First(); + + while( nullptr != (ppp = Next(ppp)) ) + { + std::cout << static_cast<SwOutlineContent*>(ppp->GetUserData())->GetOutlineLevel() << "\n"; + if(static_cast<SwOutlineContent*>(ppp->GetUserData())->GetOutlineLevel() == currPos) + { + std::cout << "hit!!!!!!!!!!!!!! : fetching last selected position\n"; + m_nLastSelType = static_cast<SwContentType *>(ppp->GetUserData())->GetType(); + std::cout << (int)m_nLastSelType << std::endl; + break; + + } } + if(nCntType == m_nLastSelType) pSelEntry = pEntry; - sal_Int32 nExpandOptions = m_bIsActive || m_bIsConstant ? m_nActiveBlock : m_nHiddenBlock; + //sal_Int32 nExpandOptions = m_bIsActive || m_bIsConstant ? m_nActiveBlock : m_nHiddenBlock; + + sal_Int32 nExpandOptions = (int)m_nLastSelType; if(nExpandOptions & (1 << (int)nCntType)) { Expand(pEntry); std::cout << " expanding item\n"; - if(nEntryRelPos && nCntType == m_nLastSelType) + if(/*nEntryRelPos && */nCntType == m_nLastSelType) { // Now maybe select a additional child SvTreeListEntry* pChild = pEntry; @@ -1662,6 +1666,7 @@ void SwContentTree::Display( bool bActive ) while(nullptr != (pChild = Next(pChild))) { // The old text will be slightly favored + std::cout << sEntryName << std::endl; if(sEntryName == GetEntryText(pChild) || nPos == nEntryRelPos ) { @@ -1730,7 +1735,6 @@ void SwContentTree::Display( bool bActive ) if(static_cast<SwOutlineContent*>(pEntry->GetUserData())->GetPos() == nActPos) { MakeVisible(pEntry); - std::cout << "MakeVisible called\n"; Select(pEntry); } }
Attachment:
Navigator_test.odt
Description: application/vnd.oasis.opendocument.text