all our old OOo api tests are written in java: They are hard to debug and a lot of them are disabled. Some work has been done for calc to convert some of the interfaces but there is still a lot of work to do. The test code for the interfaces is in test/inc/test/ and test/source/ and the old java code is in qaDevOOo. The code that then tests the interface implementation inherits from the code in test/ and will be in sc, sw, sd, dbaccess or any other module. For the already transfered tests see sc/qa/extras Most of the transformation can be done quite easily, if not please ask.
Das Dreifach-Date
Please don't remove whiteboard entries from an easy hack that have been added by the mentoring developer.
I'd be willing to contribute towards the unit tests. I have industry experience working with Google test so I have some experience with unit testing and I'm familiar with both Java and C++. If someone could mail me and get me up to speed on what needs to be done then I'd definitely consider giving it a go.
Hey David, sorry that it took me a bit to come back to your question but we were in a bit of release hurry the last days ;) As I mentioned in my first comment we have inherited quite a lof of java based API tests that in the end test c++ code. This is horrible to debug and quite slow and we have actually a framework to do the same in c++ for a bit more than 1,5 years now. The old java based tests can be found in qaDevOOo/ The code is divided between the code that is necessary to setUp the test and the test for an interface. This corresponds to our API definition in offapi as the part for the service definition and the interface definition. You can find some of the transformed tests in test/ and sc/qa/extras/ Inside test/ you can find the code to test an interface and in sc/qa/extras/ you can find the code that is necessary to setUp a test. if you search for the name of the file in the code in sc you normally also find the interface/service implementation inside sc/source/ui/unoobj/ If you want to start with some tests that have been disabled you can look into http://opengrok.libreoffice.org/xref/core/sc/qa/unoapi/knownissues.xcl You can also see a list of java tests that have been already converted. Please ignore the accessibility tests. Right now they are in a really bad shape and we have not yet decided what will happen to the accessibility code in the future. Please don't hesitate to ask for more information.
Hi Markus, Thanks for the reply. I will look into this on Monday as I have a few spare hours. The problem is my schedule is tight as I have final year projects to do at the moment and seeing as this is my first time contributing to an open source project it might take a few weeks to do this, I assume that's ok? if that is ok then I will start cracking into them come Monday. I've done a fairly extensive suite of unit tests with Google test. So other frameworks should work similarly. At the moment I'm looking at the coding standards to try and familiarise myself with the standards. If you feel I should know more information do please let me know.
Hi, I am a slightly advanced beginner (I have just finished my first "bigger" project. It was a card game similar to MauMau) and familier with C++ and Java. I motivated to learn unit testing. Could you mail me what needs to be done and where I could start? Thank you.
Hi Markus, can you please add some more details for beginners to start working on this easy ack? :)
I am quite interested in investigating this bug. Can you please fill me in on where to start? This is my first time doing open source contribution, and I am a senior of Computer Science at Portland State University. Thanks! Sean Walsh
So I'll try to add a few more details but I'm currently on vacation. So please excuse if it is not in as much detail as it should be. Currently our api test code is at qadevooo/tests/java/ and there in there in the folders IFC and mod. The implementation is divided between these two folders to represent our two parts of the api implementations. The sender IFC part is for the interface definition that is represented in our api through the IDL files in offapi and can be found at api.LibreOffice.org. the mod part is for the actual implementation that implements several interfaces. We have a similar structure for the c++ tests. The test code for the interfaces can be found in test/ and the code for the implementations for calc in sc/qa/extras. Each file in sc/qa/extras represents one implementation file and is one cppunit test that is registered by a make file in sc/ and in sc/module_sc.mk. the new tests just make it explicit which interfaces are tested while it is implicitly done in the old java tests by querying for all interfaces the object provides. So we now need a two step process to convert old tests. First convert the interface test code and implement it in test/ and secondly convert or better write a clean new implementation for the api implementation. The c++ implementation should however try to make the tests better by using the assertion macros that are provided by cppunit, make explicit what was implicit in the old implementation and improve the diagnostic messages. A good start would be to look at some of Tue code that I already converted to c++. If you have more questions please ask and I'll try to answer as soon as possible. I'll return next week from my vacation so I can answer questions after that also by irc.
adding LibreOffice developer list as CC to unresolved EasyHacks for better visibility. see e.g. http://nabble.documentfoundation.org/minutes-of-ESC-call-td4076214.html for details
Can I work on it? If so, I will assign to me. Thanks in advance!
(In reply to comment #11) > Can I work on it? If so, I will assign to me. yes you can, but we have so many Java tests that assigning this bug to any person makes no sense, multiple people can work in parallel on different tests.
(In reply to comment #11) > Can I work on it? If so, I will assign to me. > > Thanks in advance! Have you worked on any of the tests? I'd like to hack at these too, but if you have already worked on something that's not on the main branch yet, it'd be nice to know.
(In reply to comment #9) > So I'll try to add a few more details but I'm currently on vacation. So > please excuse if it is not in as much detail as it should be. > > Currently our api test code is at qadevooo/tests/java/ and there in there in > the folders IFC and mod. > > The implementation is divided between these two folders to represent our two > parts of the api implementations. The sender IFC part is for the interface > definition that is represented in our api through the IDL files in offapi > and can be found at api.LibreOffice.org. the mod part is for the actual > implementation that implements several interfaces. > > We have a similar structure for the c++ tests. The test code for the > interfaces can be found in test/ and the code for the implementations for > calc in sc/qa/extras. > > Each file in sc/qa/extras represents one implementation file and is one > cppunit test that is registered by a make file in sc/ and in > sc/module_sc.mk. the new tests just make it explicit which interfaces are > tested while it is implicitly done in the old java tests by querying for all > interfaces the object provides. > > So we now need a two step process to convert old tests. First convert the > interface test code and implement it in test/ and secondly convert or better > write a clean new implementation for the api implementation. > > The c++ implementation should however try to make the tests better by using > the assertion macros that are provided by cppunit, make explicit what was > implicit in the old implementation and improve the diagnostic messages. A > good start would be to look at some of Tue code that I already converted to > c++. > > If you have more questions please ask and I'll try to answer as soon as > possible. I'll return next week from my vacation so I can answer questions > after that also by irc. This is what needs to be done, if I interpreted correctly: 1. Pick a folder from qaDevOOo/tests/java/ifc (Pick an interface) 2. Implement the interface picked into test/source (Organized into folders as in original implementation 3. Pick a folder from qaDevOOo/tests/java/mod (Test cases, organized in folders, let's call it mod_name here) 4. Implement the tests into the folder mod_name/qa/extras (mod_name folder at project root) Is this correct?
(In reply to comment #14) > > This is what needs to be done, if I interpreted correctly: > 1. Pick a folder from qaDevOOo/tests/java/ifc (Pick an interface) > 2. Implement the interface picked into test/source (Organized into folders > as in original implementation > 3. Pick a folder from qaDevOOo/tests/java/mod (Test cases, organized in > folders, let's call it mod_name here) > 4. Implement the tests into the folder mod_name/qa/extras (mod_name folder > at project root) > > Is this correct? Mainly. Just ask here on IRC for a specific context. Good cases that I currently have and that are hopefully not too difficult are: sc.ScTableSheetObj::com::sun::star::sheet::XCellRangeData sc.ScTabViewObj::com::sun::star::sheet::XRangeSelection sc.ScTableSheetsObj::com::sun::star::container::XNameReplace sc.ScTableSheetObj::com::sun::star::sheet::XPrintAreas sc.ScTableSheetObj::com::sun::star::sheet::XCellSeries sc.ScTableValidationObj::com::sun::star::sheet::TableValidation
(In reply to comment #15) Tried you on IRC. I think last thing I should ask before getting started is: are the unit tests run when I run make? Also, how do I know the unit tests are being run? Thanks.
Nevermind I just saw this: https://wiki.documentfoundation.org/Development/Unit_Tests
(In reply to comment #16) > (In reply to comment #15) > > Tried you on IRC. > > I think last thing I should ask before getting started is: are the unit > tests run when I run make? Also, how do I know the unit tests are being > run? Thanks. I'm always on IRC just not always on the computer. My nick is moggi. The tests are run with make sc.subsequentcheck after having added the test to sc/Module_sc.mk and creating the corresponding makefile for the test. The easiest part is just to copy and paste on of the other makefiles from an API test in the sc directory and change the line with the source file and the name. The same is true if you add a file to test/ for an API test. You still need to add the file to test/Library_subsequentcheck.mk and execute make test in the top level directory. If you have more problems please ask.
(In reply to comment #18) > (In reply to comment #16) > > (In reply to comment #15) > > > > Tried you on IRC. > > > > I think last thing I should ask before getting started is: are the unit > > tests run when I run make? Also, how do I know the unit tests are being > > run? Thanks. > > I'm always on IRC just not always on the computer. My nick is moggi. > > The tests are run with make sc.subsequentcheck after having added the test > to sc/Module_sc.mk and creating the corresponding makefile for the test. The > easiest part is just to copy and paste on of the other makefiles from an API > test in the sc directory and change the line with the source file and the > name. > > The same is true if you add a file to test/ for an API test. You still need > to add the file to test/Library_subsequentcheck.mk and execute make test in > the top level directory. > > If you have more problems please ask. Just a short tip to make it easier. While working ona new test it makes sense to remove the other tests from the subsequent test target in sc/Module_sc.mk.
*** Bug 48024 has been marked as a duplicate of this bug. ***
Are people still working on this?
Hi, is it still something we need to work on ? I'm a student and I would like to try working on it. If you have any advice, i'll happily take them.
Migrating Whiteboard tags to Keywords: (EasyHack DifficultyBeginner SkillCpp SkillDebug) [NinjaEdit]
(In reply to jeremy.carpentier.sio from comment #22) > Hi, is it still something we need to work on ? > > I'm a student and I would like to try working on it. If you have any advice, > i'll happily take them. Yes we are still working on this, if you need help feel free to mail me. have a nice day jan iversen
topicDebug is a Topic.
Remove skillDebug, superceded by topicDebug.
kadertarlan committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=8c125eca7f8a0dd2d59678cff2574bbccc70e536 tdf#45904 move java based api tests to c++ 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.
JanI is default CC for Easy Hacks (Add Jan; remove LibreOffice Dev List from CC) [NinjaEdit]
kadertarlan committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=1d5767c6e464b914812867aac5c3ccd0745dd1ea tdf#45904 move java based api tests to c++ 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.
Fabio Buso committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=e7f55f15ccd97bc92e1400bc5862171a621da3e2 tdf#45904 Move java XViewPane test to c++ 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.
Controlled, still open
Paul Trojahn committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f1454b474d9248d7ef2cb84f396a974184e5167e tdf#45904 Move java XCellSeries test to c++ It will be available in 5.5.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.
Paul Trojahn committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=2516285d2a9b6b992f24867d39402ca5c29cd71d tdf#45904 Move remaining XCellSeries test code to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c08dd17baf7ea63f10d5311e90c5c6a4c48aac20 tdf#45904 Move Java XCellAddressable test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=472737ad70f1a3eaa22cab9b746d35e4b94094a0 tdf#45904 Move Java XSheetAnnotationShapeSupplier test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=01a51eb77ce97c79b897f842051c6704dada0494 tdf#45904 Move Java XCellAddressable test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=4b4c14a0803c0ba0af98b888af7ad8793ea4f754 tdf#45904 Remove/disable obsolete _XSheetAnnotation Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=46ba298934d1765365018349f26f8a732cefba63 tdf#45904 Remove/disable obsolete _XSheetAnnotations Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=44077dc6104e5eab40414889e7be776767709984 tdf#45904 Move Java _XSpreadsheets tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a9a5a55e0284638deb87c69699ab37a456908900 tdf#45904 Remove/disable obsolete _XGoalSeek Java test It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=0bd57d62d0f15eced0e99097d9f46a86f177e9a1 tdf#45904 Move Java _XViewSplitable tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=27cbca2c8dccbbb299621b49e5ffd836188202f0 tdf#45904 Move Java _XUsedAreaCursor tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a4cbf53a78a41f7881c5c8c62ad0753e8c416f42 tdf#45904 Remove/disable obsolete _XDataPilotFieldGrouping Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a0bb33bd5d6a9f968ab5e4eadc4692754cff7073 tdf#45904 Remove/disable obsolete _XDataPilotDescriptor Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=8ab13df17936537a801d0d94c1479c5a8e38cce3 tdf#45904 Remove/disable obsolete _XDataPilotTable2 Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c22883f6018858bd3198059f696fa3dff264c24d tdf#45904 Remove/disable obsolete _XDatabaseRange Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=70027414b3ae0c460b0d398fccde092750af47fd tdf#45904 Move Java _XViewFreezable tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=557ad5279a29aa89101286dd76fcc669ac4548b9 tdf#45904 Remove/disable obsolete _XNamedRange tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=76da9aea1c956a4febfd530a5a53e820c1440734 tdf#45904 Remove/disable obsolete _XPrintAreas Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=aeb525c0f97727bc9add5bf9923adb69c2989aa0 tdf#45904 Move Java _XAreaLink tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=fcbabad4e760a9fda8bbb5069e5dc45ab390b78d tdf#45904 Remove/disable obsolete _XDataPilotTable Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=494b7089b741c2944f72e2e4e9ea68aa500eb2d1 tdf#45904 Remove/disable obsolete _XSheetOutline Java tests It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=40fdfea0ae994569fb0919c974fc2356dd4bb5c4 tdf#45904 Remove/disable obsolete _XSpreadsheetDocument Java test It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=4818ee60172b2c7d5d04e57499e345e1cfd7b430 tdf#45904 Move Java _XUniqueCellFormatRangesSupplier test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=90b5555e3ac951c6387f1fc9110119655b23b832 tdf#45904 Move _CellAreaLink Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c298f79083cb7e09dd389a353b7bb25e6f5f00b2 tdf#45904: Move _DatabaseRange Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=829b73b1e9cb4ed11feeff428220a39f3b666214 tdf#45904 Move _DataPilotItem Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=4867bbdd99e3d5262621fa761d852d849b7365ab tdf#45904: Move _XSubTotalField Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f3c6264d1e8a599ddfb23f6dc9a9dd2e42885c19 tdf#45904: Move _XAreaLinks Java to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a060947e8c1538cedae5dee6b2a4e7a15d434d66 tdf#45904: Move _XSubTotalDescriptor Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=80003831041fcd718d2dddc9b6409ff50b48facf tdf#45904 Move _XSubTotalCalculatable Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=410515366c466c1f8b0a81d47f8263d278af3a18 tdf#45904 Move Java _XSpreadsheet tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=d56be38352031695951558bf1dffd0a48c84eaca tdf#45904: Move Java _XSheetPageBreak tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a0b7cd137aac7529b328c813b011166a78074cb4 tdf#45904: Move Java _XSheetOperation tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=4200896e36f259a60b3d3288e13ff08d2fda861c tdf#45904: Move Java _XSheetLinkable tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=ba93d6aeb73cba64f037a0bd88d96fedb90f3f2f tdf#45904: Move Java _XSheetFilterDescriptor tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=bbfec269bda9906eae66b207987d53bbea969eec tdf#45904: Move Java _XSheetFilterable test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=2416d69ad4fa26b65d5b05a8575ac96af6b2c9a9 tdf#45904 Move Java _XSheetCondition tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6bddeb4de19685c1ce1a3c1f9bd32cffb6b14bc6 tdf#45904 Move Java _XSheetConditionalEntry tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=44e9640748791f602edb22cbc499200283466e1e tdf#45904 Move Java _XSheetConditionalEntries test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=bda85f9563b03bb36c7d72dc1178661b3bf23df0 tdf#45904 Move Java _XSheetCellRanges tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c3965b1ce4428a97a8050a7bc53d60b642062502 tdf#45904 Move Java _XSheetCellRange tests to C++ It will be available in 6.0.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.
Hi Jens - fantastic to see you (and others) working on this bug =) really encouraging - good work.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6f29841acb201b118bbf5815163fb50d83929e9f tdf#45904 Move Java _XSheetCellRangeContainer test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f1c97e9ff63cb6f120e618b3202260e0f8aefa0e tdf#45904 Move Java _XSheetFilterableEx tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=e2b748e0a4ab7a33dd9ebde1d7f37776dff60c3b tdf#45904 Move _XScenarios Java test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=cc73a209c18defc5fc9bb5bc8369a553bd361826 tdf#45904 Move _XLabelRanges Java test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=1c52e61fdc48971387254d5c135e613fa42f9df8 tdf#45904 Move _XLabelRange Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=1dde2e441451ba6e7d760b1e1544440113993c24 tdf#45904 Move _XSheetAnnotationsSupplier Java test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=9ccd22820d6b57393b59fe0f70b29dce71eade48 tdf#45904 Move _XScenariosSupplier Java test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6d24213d55df33c7bb5f10d511dcfc82b745db38 tdf#45904 Move _XSpreadsheetView Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=39c5ade7bbb444eb204015955276748a5b381ad9 tdf#45904 Move _XSheetAuditing Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a8681f24d786a5498844e29a3029cf9e60e74ca3 tdf#45904 Move _XScenarioEnhanced Java test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=befef6ff30f4eb6d3c61c1542839661d7f823dc4 tdf#45904 Move _XSheetAnnotationAnchor Java test to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=2d609053adb2f078fa7aa3ccdf3758f2f01e478f tdf#45904 Move _XHeaderFooterContent Java tests to C++ It will be available in 6.0.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=350eec67a5989365560e38e9270990dcd0a019e8 tdf#45904 Move _XMultipleOperation Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=958d8d316dbda970dc31d5b060f8d317db0516ff tdf#45904 Move _XRecentFunctions Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=eff70347190a6642fd62a9e0b20e4366c39fbc7a tdf#45904 Move _XFunctionDescriptions Java test to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c7e5c7da98d40852d18bd7683e40c9679836ba49 tdf#45904 Move _XDataPilotTablesSupplier Java test to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=87d636a14be35468ecef7b6f95c6754d24bb6e94 tdf#45904 Move _XDataPilotTables Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=7345bef0f354673e2fd3127b8fc707eae4c936ed tdf#45904 Move _XDataPilotField Java test to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=13ca879fba12c53f2856186f5cd8509efe625774 tdf#45904 Move _XDatabaseRanges Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=68f7d89cecc74e1df649e0691676178db544f913 tdf#45904 Move _XConsolidationDescriptor Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=acc24edf21b99822b6e6d8119eba3ab843458401 tdf#45904 Move _XConsolidatable Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=96f8861a29ebf650dedcbee71b8360133c0ceabb tdf#45904 Move _XCellFormatRangesSupplier Java test to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b92af3c7b4f8ad91891c2159b35070fe4a1bf2db tdf#45904 Move _XCellRangeAddressable Java test to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=23a1c5429c67986a945baab6dae553e58d2d72d9 tdf#45904 Move _Scenario Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=056575f7ceff003348783f7611f84a68463fa8c8 tdf#45904 Move _TableValidation Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=5de151f0fd7b590ae13560086b46ea84e4d9cf9c tdf#45904 Move _TableAutoFormat Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b673cbeeeb0cedb6836e1946e6e6c12bfd68add4 tdf#45904 Move _DatabaseImportDescriptor Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6e21c087fdc49975d4ee5423b001b132d3a171a1 tdf#45904 Move _DocumentSettings Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c29828daa32f3dee503e4db2b5b55d3d12f1fd39 tdf#45904 Move _SubTotalDescriptor Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=95307f2ca73480176634e5cc46d96a19b735e87b tdf#45904 Move _SpreadsheetViewSettings Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6e31851e72520ce08e5cd2bf1f3aaa9f100a3eff tdf#45904 Move _GlobalSheetSettings Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=35f6b6f6b9693e098b8407c3c35e74087d59ed8e tdf#45904 Move _SheetCell Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=22f6e25987744da57644be95f59b45c1ff51a5d2 tdf#45904 Move _SheetCellRange Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=4a8856dad808e0ae8b6f4efc49edcee0b0678a37 tdf#45904 Move _SheetCellRanges Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=5a0acced8988a54d8aaf0328d2696dae21727c6a tdf#45904: Move _SheetFilterDescriptor Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=7b7e0ff7b78f2e745712c551e5efe7457987f136 tdf#45904: Move _Shape Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b8563d46a03567df0780216173b10156e158b64e tdf#45904 Move _SheetLink Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=d97120c6f35e4c14a71df63b91dcbf67d9f310cc tdf#45904 Move _Spreadsheet Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=fd911a32505331174787403e6260202e29ea82b8 tdf#45904 Rename test object for GlobalSheetSettings It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b910203239f29d886c698377fa40185998adbae3 tdf#45904 Move _SpreadsheetDocumentSettings Java test to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=655b9054bc265de377c3dc411e2ef40cdfd16dce tdf#45904 Move _XDDELink Java test to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=3fc835b79957b4ace99c1dc9526eda7549020951 tdf#45904 Move _XCalculatable Java test to C++ It will be available in 6.1.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.
Abhyudaya Sharma committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=e4bf7cbc082a428dbef65f0d92cb0cdbda7af16e tdf#45904 Move _CaptionShape Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=34568738bbaf1e82dbb53fdf516f4d57416bb5b0 tdf#45904 Move _XActivationBroadcaster Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=387896a05189c60570e031191c3f5959e7737bcb tdf#45904 Move _XArrayFormulaRange Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a7fc11be3083b61a70e7a55e0436032771e37f20 tdf#45904 Move _XCellRangeFormula Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=7dcda19e4a5580dd526eeab07feba12f4212e4f1 tdf#45904 Move _XCellRangeMovement Java tests to C++ It will be available in 6.1.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.
kadertarlan committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b6d2d6db28eec4ab311c4223cf5be508feb2e057 tdf#45904 move java based api tests to c++ (AccessibleRelationSet) It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c8c74a0b4ca6f3a3619f423b6548c80c52392ae0 tdf#45904 Move _FunctionDescription Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=73a7c7ddbc52ed3fe512d4c5206e90810f14b50c tdf#45904 Move _SheetSortDescriptor Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6bf05f004b19b1cc2045556b8dd48ddb2ec3c359 tdf#45904 Move _XScenario Java tests to C++ It will be available in 6.1.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=939fc7dc50a038edb252a8da941ef4e1c018f2b0 tdf#45904 Move _XCellRangeData Java test to C++ It will be available in 6.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=600987b415e537362125b4445ab7132535e6e1e1 tdf#45904 Move remaining _XCellRangeReferrer Java tests to C++ It will be available in 6.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=cceef188206358fdefaa9582230253b844b54216 tdf#45904 Move _XFormulaQuery Java tests to C++ It will be available in 6.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=81260b12666853bb9c21da487657e169cac6d4d9 tdf#45904 Move _XDocumentAuditing Java test to C++ It will be available in 6.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.
Jens Carl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=8164399df0df976784ddc1a76b46939c53ae51ee tdf#45904 Move _XSheetCellCursor Java tests to C++ It will be available in 6.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.
I want to work on this bug, and want to know which java files are still available to be converted into cpp, thanks.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=9e1df712d6e247f4dc9391c0a006b3da2df40403 tdf#45904 Move _XCellCursor Java tests to C++ It will be available in 6.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.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6914ad12af3c9f51fa33d733b3355694e0254cdc tdf#45904 Move _XCell Java tests to C++ It will be available in 6.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.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=53291ffee8e2a2186afbd2412881a18dded5a697 tdf#45904 Move _XColumnRowRange Java tests to C++ It will be available in 6.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.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=8e12e517473dcdfbfd04dc5192c841aff011f609 tdf#45904 Move _XChild Java tests to C++ It will be available in 6.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.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=efe119aaa50e9f532b3fac1ef153469c80f24b80 tdf#45904 Move _XMergeable Java Tests to C++ It will be available in 6.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.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b56ad4cbe0aa67b92211cf31d70eca0b35c62666 tdf#45904 Move _XIndent Java Tests to C++ It will be available in 6.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.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=189d8ade3ca69c4eb313bdfc25182dc81b5d06e8 tdf#45904 Move _XTableChartsSupplier Java Tests to C++ It will be available in 6.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.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/9329d18235d21a00dbc724ba3251e95fbb675588%5E%21 tdf#45904 Move _XEnumerationAccess Java Tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/bf4fc97131147d25b18d088023262c977f0b2787%5E%21 tdf#45904: Remove/disable obsolete _XNamed tests It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/d30d050c2febe7043d0f70f954ee06e28c4115d9%5E%21 tdf#45904 Remove obsolete _XNamed tests It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/13dd6c26658727ec72b6fa2f7129a0e283ff1ec6%5E%21 tdf#45904 Move _XEnumeration for ScCellsEnumeration to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f7ae9bd132d81412dea37874e5fbc7692781222c%5E%21 tdf#45904 Move _XEnumeration tests for ScCellFormatsEnumeration to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f559951fcbdb09a20647eedd342d0a40467eadcd%5E%21 tdf#45904 Move XEnumeration tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/87804531aa8608b267478dd253c140ebbd820497%5E%21 tdf#45904 Move XEnumeration tests for ScUniqueCellFormatsEnumeration to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/32a8c55c9746f27db6a825372913e639d67c3476%5E%21 tdf#45904 Move XEnumeration Java test to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/fdb520825339a8618cd41b0d972b98155039b9e7%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/fb036ee652cf2284a70036b3bf2948ef966cffb0%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a9cabfed5ea019c2e69220d924d000688bb5c935%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/3b7faa73420550d508d480ed70146468dfadb268%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b5fca203d1561be77ab5f3f78cf3ef38208305f1%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a146438bdbe043357b6c729a6136d1aeef269d97%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/cd52e2775773f3628177da4551d9f18e83740910%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/7ff004e8cac9b3e7296da11fc634facdadcd4d59%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/e1695ce5df353f2dc1f7aa2aa9f261cc70526f37%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/37455f8f0109ac838e2dde64118d7eb736958526%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/9cc6b8ebe366a909aa8406f26c6775554c65b439%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4e467724fcea4bfc9cd44261c91f07d8161d3870%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/242ea8eea8cf1d0634617aebfb2fffce45c888c4%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f0ddfe64f36b266987ef86bfecb19c203a3ff574%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/49907ec311944e5c7abeca8dd33b77c63b268e6a%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/20a7d7af616899f39824d546a325c7673506b0b2%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0c627e494052f8717856712358763eb670b5a5fb%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/dc0616cda97c5039ae6b46ded001b51c6f9de498%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a0d1f5eca204e4de84e6e83f0c0765323a23833f%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b978f9f37529c2d1428dcd37221558374e95b8d1%5E%21 tdf#45904 Move XEnumeration Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rahul Gurung committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/851c80fdf6fb3509b53c6301dd0721be58c18719%5E%21 tdf#45904 Move _XLinkTargetSupplier Java Tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/6408dbf268fc8cc72fa741197e38b07619f0e96a%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/9be1f37fa2954191e06d570e98671868b47d4c76%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/20533db9eaafac18b02c81c64b583c76a5ca66a6%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/e268016887aba18af67ad5060c8dfbf936f688d8%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/2562eb1aff667fd9ddc07b75fa8346e9d61ea093%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a9b13f2b7f0d2ab8bcf25a3110a06ababb4573f6%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/184d0c4baf3862bddf735aa416d219b83c6da421%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/cee3278a3d5924e01d92ff8a39d7b9751996d7e3%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/e01b46b4229bfb7ba54127f590dec837d798ebd4%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/63ff8602c16b0c26927dc3413b12a5368fe367b0%5E%21 tdf#45904 Move XRefreshable Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4cb874c1b068d45039d7eed6f47c5ae5229fa301%5E%21 tdf#45904 Move XControlAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b4ffa8c04117ba75f7f63f2a7655a2b611b83ab9%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/849944f62cecd75103d85ae59d79d98bf273c6e4%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a91782b92d9509619da2598904c644a19aead70b%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/04ce016e9c618e0b2b35271982e07f265dea81b1%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a9d928cd9b8073d422a5eab70f9de374bf07a260%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/beae6c7a7f163daad0d4dea63a3d403af2745fd1%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/47d7608395bde93782cd9642abeeebe482ddf301%5E%21 tdf#45904 Move XRefreshable Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/165e0e14e5ad71a44d7eb1f301a565c5cd8f0559%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8a4d80bc001483e14945d87118e53f1518a434e8%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/2d6e0bdda331dc6343972f9ec786335aa8ddc674%5E%21 tdf#45904 Move XRefreshable Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/3e2368cc76dca7583d54a5f75592f68340d6ce83%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/839d651db92655f392107da864195bb86f67f704%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ec291d1ad0581688522cd1f1d341ad4345b14885%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/5658da22f77a48599bb20cf6c7c37abf0388186e%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/9b39fcd59c251e51c074e90f48924849b6f2f5c7%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8deed9bc13fcec2300d3f537d2cc419625b8c499%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/5d57ddc1853d5cf9f5af9ad73f3ec465aad6b4a6%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/1a4a78efc7c8bc06de958ce64c6be5f5ef3f1e2d%5E%21 tdf#45904 Move XTableRows Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0c31cc212fce6b8c28ddc1648fed245dc840a08a%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/2432b5857ff77b72d8b51d93192f93e25fcd6235%5E%21 tdf#45904 Move XIndexAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/3e5075237aa44a9f8bf71f3fb378bdba9b696a5d%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/d53fa1bbebf3d0ed9a8ad6d39117b076079d5b09%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/29b322ebab31b83d1df470f7ec794d500e15b948%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/5c30493e95e54f082bd4b43d735a38c2339e1f92%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/823ce74283d5214204abee7b2765e86f094c32eb%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8e323a3fb2d359d29fdaee61f60ef6b0488fc942%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/c73cc08f0a4af4578e1d061d042f2c11ce0b51ae%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/babb947e4c23240bf63acbf6657384f0e2c982bd%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/e1e772e40f83a8f1d7c4947c5784e1fe8b640d5b%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/6740443311268b7d918bf4f43134d64fb78a0109%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b69b90bbeac795b15418b884ac4b26e35ceb08db%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0b521ddd8396490939f1a2ee7dde8effbde6d82d%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4edf62ebc95ec00a3a04907213d1a5fbb57b390d%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0ea7692d02518561b6bc07bb920ae619678f020f%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/6e07cec370fe73d3bf1ca7432eab442f3de38bf9%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a3fee0ee2633d6c1bbae4305c47fc66f3ed789d8%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/cda562cedef53a6e54be2d9512a1347776046dfe%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/835b854d74bcd9f9c6a87b24d533242433f7800b%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/41ae69e330857a3bb983f20c4096be125c4139e9%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/fd8a724d22c92e3ebef4a3da126baaac3d3bde79%5E%21 tdf#45904 Move XDrawPages Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/be75c098440f073d92dd713ba2492625aff8246e%5E%21 tdf#45904 Clean up _XDrawPageExpander Java tests It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/13279b94080d87dde51bc8b8c669212bf71cacca%5E%21 tdf#45904 Clean up _XDrawPageSummarizer Java tests It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/cae2d0cda5d462889274a6ea0be30b8c0e9f8c6e%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ce218f3064f58a836be6f0fba75576bfbe031404%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/be3dce73f9ad16145b5f898058bab416504bc9c3%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/9b891b0062e550430025b440a31211cdec74f3a8%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/03c62c4db748ea214fd7bcef07052d90acc865ea%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/9a2954f566b88c06c9e3aa34e1fa7e23200182ee%5E%21 tdf#45904 Move XEmbeddedObjectSupplier Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b5d2ebb76e763457a8c8f07b26d542295e82e192%5E%21 tdf#45904 Move XTableChart Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/dd0155967e0b679b7df3907fcb12e8cbd82cdefb%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/7422d394812958a2014615b996df0378cc7d495f%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/412fbb6f017a12b423ae7e98fb7a56971084185e%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ce0be9900fd72b7ffc7e86da49ce836dd2da37fe%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/3e0c4c0e96298a4f0c72b52652e2cc1d9f3a20e8%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/fb3da1e949230179b31667ab04f76a71aab321b3%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Ajay Mahato committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ecc855aa1c86d88a99c3be06c70ed382180be688%5E%21 tdf#45904 Move XSimpleText Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a71de08d75e15fd37408901d47a7aa3918f8087a%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b89dbc08b735384cdc9e469b044842fb729ced0b%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/3b79e1e35e527b6973bce9c76d2d036f4300ce49%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/070967b25978c388e33860d69a8bf56b46b18f13%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/466f1236ac0034918ed07ac3cd37607383dff40f%5E%21 tdf#45904 Move XElementAccess Java tests for C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8e99c1fafb4c5b131ee5dc61102ad799d9f36a72%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/7ae358f33f849bf51e810fa8739301307c98bc67%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/e0745a11597e5d57eb8001a295314e86810a6027%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/c9fa173e96190259e7a8747d769232a4c9b842dc%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/10f2a4bf51f5b29bc601bc210a7b837be433eedb%5E%21 tdf#45904 Move XEnumerationAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Hi, can I work on it?
(In reply to sushmita raj from comment #244) > Hi, can I work on it? Yes, you can, but there are some many Java tests that it doesn't make any sense to assign this bug to one person. Multiple people can work on it at the same time.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f58359f8c561b6a377044bba6c0e76eec2db91e7%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ef8c413a08d6dc254b2fc243bba6bc5c09aa646b%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/350294ccc4af923b8f849913f232bcd4f3c6d189%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/67033fd7d0f357d52e424254576ea716ec0ebccc%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/bb6f5dc046966b7295dc199ea07008098757f0ef%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/33048db2b4f7fd6bc7055effe11ee37cf7045c46%5E%21 tdf#45904 Move XSimpleText Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/167c5f9affd16ae5ece851de9e53f197d3036d93%5E%21 tdf#45904 Move XTextRange Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/04f4cbd0b3e949c28382359f722872d380d98900%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/da474e2985e8672c63e9282576bac6750ae6648c%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4a7771ffa8d98d08dffbba90fd42d1ab75e056fe%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0ee02fdadaf43ac1522fe49118d015d5fa6aaed5%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/fe632c86aa250bb355a59ce6acf4dd75eae7afe0%5E%21 tdf#45904 Move XRefreshable Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/12fb6e9e1a0ccdab412832a9e9a7e0cdd7c312be%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ea27ea0fb708a502748a83b1196a3821e568ed9e%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/197988d28c970c166a750d4b36e17287f083822f%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/57ca3b3b2b4f40b1792ea7be7d0543f3036926ef%5E%21 tdf#45904 Move XTableCharts Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/fda94f9e52ce6930b5fbde94411a1860c73a39ba%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/9e04b1011ce975d9cae3909fbbf781765cf98d65%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f59942a9c784a12fc2087b17b31a68cc0031c20c%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/11ea5fe055ed345154138c814e38e54c6624ee89%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a2ae61ee38410579487f8d5729eb8348eece702d%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/bb0948797d42cea9541651e0f90c2990ec5229b6%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/bf63df7a6f781f595ada126cb6f67806124ab7f8%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/dc28443e1ae7d160127e0ccbc7362b9756660152%5E%21 tdf#45904 Move XNameContainer Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4ad3b5cdf416a8541a7188f67c7ab7fc0a93b94e%5E%21 tdf#45904 Move XNameReplace Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/3407fef63579d804f093fea674d1e0319809e4bc%5E%21 tdf#45904 Move XNameAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/11234dde180f8449f07b4777b51f1fc6d713ffd6%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/847dfdecb5fc5e86364563315a4488616e491c4c%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/78971bf2793e8f79b54e220305fe7d44760385bf%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4eff4061814020b319fb3ec5a7ce56fcfa7cf7bf%5E%21 tdf#45904 Move XTableColumns Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ad04121efa8dd513bc0564515b5f305bb1549109%5E%21 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/bb9728bbf9bb29ef2b6ca582a382f66e9adf2623%5E%21 tdf#45904 Move XNameReplace Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b8e7f938e4abbe39623d307ed7fe27a2916e260c%5E%21 tdf#45904 Move XNameContainer Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/7331800888122916ca4973052a03412c8bcf088f%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/1e176d3fc5c82a596f17f1a2faf4c72dea2943f4%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0c6c0fe64c5be46712f21204a2d8ed2f99e4af62%5E%21 tdf#45904 Move XEnumerationAccess Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ed6a71eafa61bade50219d2ff6233a42ab6d1c17%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f897e80d063436be07356049f595efe5afb04859%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/eb0653ee80ad7249fde9ff752b56316fb98c4592%5E%21 tdf#45904 Move XServiceInfo Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ee503c36199d225f4c906fe43c927f911c2097c7%5E%21 tdf#45904 Move XShapeGrouper Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b99ea0ff33b78ba76d1ae436895efac490252e0f%5E%21 tdf#45904 Move XShapes Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8d45d5ee399d0148672e79c379f5d29e1c8ba6f3%5E%21 tdf#45904 Move XRefreshable Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/d757b121e3f0f5de03da1be430ed51bf830dce67%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/2e0e7a15f66f5cb55f2a424fae6a9050c2c7f9ca%5E%21 tdf#45904 Move XFormLayerAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ae75372dbdb74eaf959b566f1d9c2b77043e736a%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/5e67b38309b4c9c925530cafa6b9476f9839a48e%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/554bae3e550fb3c64473851bf9a24cb4a2eabdd8%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/331e0c83466edef000ffb02b3e55cb49c5580347%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/321607572f0880d1cd6c6de9ee931c33d90bae7c%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8f29f31b41136acbea8ca21525f9623948a1a4b8%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a790aafde5aad4b3bd366f487e793268351c5636%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ee268253163c4f9f00fd5182c97d9d488c637dfc%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/cc9a8c13dad6f3d82a2386554bd6113b486a1752%5E%21 tdf#45904 Move TableRow Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/6a7350f856e50ce3d091bda9f4f00219b5521333%5E%21 tdf#45904 Move XCellRange Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a496096b4ecc4ffb45bc7dc25753c970bf5ca487%5E%21 tdf#45904 Remove obsolete/disabled tests It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/6c50ee3377756ae7da1ae039da35775c0a97ef2f%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/c498e548ee45430b31cb63df17818ba39771ef7c%5E%21 tdf#45904 Move TextContent Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/527c400ef0654761ac1a3835dc06f2373523ef64%5E%21 tdf#45904 Remove obsolete ScPageObj tests It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4ce6590223ab9a615afcf55ebc0e9cdb3ff2a73a%5E%21 tdf#45904 Remove obsolete tests for ScHeaderFieldObj It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/5696272f9055b9b15c94d70a0dea7cee299c23ed%5E%21 tdf#45904 Move XTextField Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/91ff3d136a9841607d815713081583b6a4e1da9d%5E%21 tdf#45904 Remove already converted tests It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/eb7a731bcfbacec15b77889f0ac545d36ef5ad19%5E%21 tdf#45904 Move XChartData Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/2b307927f028eeefcec41a8bc8daae392521f9df%5E%21 tdf#45904 Move XCellRange Java test to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/a7c72b3725f38bba8463ebf10958574a4334837e%5E%21 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/7d51d3876f488dca577b1d889d390a90fbfb4134%5E%21 tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/7c88700b74346d58084b48656f1c7e28f891cf09%5E%21 tdf#45904 Move TableColumn Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/4931a1e5e365c018a271fcd94f0a743b4fc38c6c%5E%21 tdf#45904 Move XPropertSet Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/976bb31199baf8ded562323e35626c61ef5bffbe%5E%21 tdf#45904 Move XSearchDescriptor Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/6f763a3fcd420ddd147459db0f836ef3e05e710f%5E%21 tdf#45904 Move SearchDescriptor Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f07e91ac739edf846ae9dda9b2305bae6dde489e%5E%21 tdf#45904 Move XReplaceDescriptor Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0d2252b2a975c0b4113fbef47881932120e881b4%5E%21 Related tdf#45904: Remove already converted tests It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/35608a192df5529d8a0df4ad2f6bce42fc64a9ab%5E%21 tdf#45904 Move XComponent Java tests to C++ It will be available in 6.3.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/c77a1e1c039c863e6fdb47b92ce315b87fc73d0d%5E%21 tdf#45904 Move XShapeDescriptor Java test to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8a453f96f0181b1eae227ebdadea6ee458d53eb4%5E%21 tdf#45904 Move XGluePointsSupplier Java test to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0e73f9eb415793c1c7503021c40fd746b2ef7ba2%5E%21 tdf#45904 Move XShape Java tests to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/f7a6b7a82469f2b4bd6cec3e7aa697aefd5775b7%5E%21 tdf#45904 Correct mishap with removed converted tests It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/8567d3d2567e83d1a8769651295384cfe5d68ce1%5E%21 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/d3b81a27e2bb7c8a3de8cd5fabe8d3734b5a3d3d%5E%21 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/0d0e8533afe565564835e6d51500e64066fd565b%5E%21 tdf#45904 Move XShape Java tests to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/bda1d88f2bfa21202725ab9c567b3cccba3c1f0b%5E%21 tdf#45904 Move XShapeDescriptor Java test to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/b3e98730b324c6343a024e18075817241fe25437%5E%21 tdf#45904 Move XSimpleText Java tests to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/+/ba3147f09c8749dc1250e16d432beae6b9d5342b%5E%21 tdf#45904 Remove/disable obsolete XText Java tests It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/3874ac30beeb65a7048ff31bf052ecc87c185b69 tdf#45904 Move XGluePointsSupplier Java test to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/7fe58f64cd8b58918cae92aed536d266f63b4c71 tdf#45904 Move XTextRange Java test to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/b7735d9c705bdec53ddb0077b93ae70ce4c2df48 tdf#45904 Move XNamed Java tests to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/e6109939b448f070848bfcf11ac013e05f71767a tdf#45904 Move XPropertySet Java tests to C++ It will be available in 6.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/49eb4906de8f499ae14b789e90df9ba654895af5 tdf#45904 Move XNameAccess Java tests to C++ It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/20747665a60b5c8782ab77962380ea34a30c20fa tdf#45904 Move XNameReplace Java test to C++ It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/c6aceaa407faf9950675411cc24d0c156fc7d972 tdf#45904 Move XIndexAccess Java tests to C++ It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/b9b553f17404ff24aae2be4cda65fa3c0f380985 tdf#45904 Move XElementAccess Java tests to C++ It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/59fd5874dcc1ff4fc469067a55e99c2cd79716c3 tdf#45904 Move XNameContainer Java tests to C++ It will be available in 7.0.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Can i work on this subject? I assigned it to myself but not sure if i did it right.
Okay sorry for assigning. I read the comments now. I want to work on this subject. I hope it is still possible.
(In reply to Gökay ŞATIR from comment #338) > Okay sorry for assigning. I read the comments now. I want to work on this > subject. I hope it is still possible. Yes, there are still lots of tests to convert.
This is a good post. This post gives truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. Thank you so much. Keep up the good works <a href=" https://swiftwayservices.com/"> local move</a>
Hello, Is this ticket still of interest ? I would like to work on it and make my first contribution
(In reply to Abdallah Afify from comment #342) > Hello, > > Is this ticket still of interest ? I would like to work on it and make my > first contribution Yes, it is in status NEW after all and as you can see from examining the source, there are still plenty of Java-based tests.
Okay thanks. I will get the code and start right away
Which unit tests exactly to be converted ? where can I find them and how I can run them.
(In reply to Abdallah Afify from comment #345) > Which unit tests exactly to be converted ? where can I find them and how I > can run them. I'm a bit surprised by your question as all the information is right here in this report. I guess I have to make it more obvious so: Read - Description - Comment 4 - Comment 9 - Comment 18 - Comment 19 Study the commits made so far that you will also find right here in this report. Bonus: you can also study the commits of Jens in general as he has done the most work on this topic and there might be some additionally interesting tweaks in his history not linked to this report: https://git.libreoffice.org/core/+log/master/?author=j.carl43%40gmx.de
thank you for the clarification and sorry if the question was redundant. I will work on it
(In reply to Abdallah Afify from comment #345) > Which unit tests exactly to be converted ? where can I find them and how I > can run them. Also have a look at this posting http://document-foundation-mail-archive.969070.n3.nabble.com/converting-XFootnote-java-to-cpp-td4245888.html#a4245973 with a detailed step-by-step approach I normally use.
(In reply to Jens Carl from comment #348) > (In reply to Abdallah Afify from comment #345) > > Which unit tests exactly to be converted ? where can I find them and how I > > can run them. > > Also have a look at this posting > http://document-foundation-mail-archive.969070.n3.nabble.com/converting- > XFootnote-java-to-cpp-td4245888.html#a4245973 with a detailed step-by-step > approach I normally use. Another link as Nabble will not work in the near future: https://lists.freedesktop.org/archives/libreoffice/2018-August/080716.html
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/a1877ab81b396c742c58a13d3830b4637db924c0 tdf#45904 Move XElementAccess Java test to C++ It will be available in 7.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/26cbb045a06c4027bd7b446d692c3b38297d0283 tdf#45904 Move XComponent Java test to C++ It will be available in 7.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Jens Carl committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/89aec8620034d9cbaa44275282fb3c56e8b3935e tdf#45904: Remove ScHeaderFieldObj Java test It will be available in 7.4.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Re-evaluating the EasyHack in 2022 This EasyHack is still relevant. There are still many Java based API tests that can be ported to C++. For example, see qadevOOo folder in the source code.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/d71d61326f4ed87151bb4cee1185561f3ae49204 tdf#45904: Remove old SwXBookmarks Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/49c4f0581c7a926f0ab836241f912c70fc9cac75 tdf#45904: Move SwXTextSections Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/2c5dfcf4b076aa8a75423a26b0804d5afc90ff0f tdf#45904: Move SwXTextTables Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/bb720ac6aba93256c0ecdd8e50b29e750428ff49 tdf#45904: Remove old SwXDocumentIndex Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/6d9f68e47a1984fe310293ea2318e314f4a18bb2 tdf#45904: Remove old SwXBookmark Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/594665e757c4adec4d243e4c33299877b2264552 tdf#45904 Move _NumberingRules Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/bb8f57dfa17e108c4cd5d08a538077c3d2c6f195 tdf#45904: Move _BaseIndexMark Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/7b999ca22824e102d283a8b7327fa2717db6568a tdf#45904: Move _XAutoTextContainer Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/0440f57a096c2d8da704b3bc409ecfd74202ac8f tdf#45904: Move SwXTextFieldMasters Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/52f785d15197b4ef645ae08015994f5accf2ec8e tdf#45904: Remove old SwXReferenceMark Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/7a762a2c7ec5fe107697c06d31bc7a184011a338 tdf#45904: Move _XTextRangeCompare Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/534326bf573ace5877c7d790b37399623aa71d79 tdf#45904: Move SwXTextEmbeddedObjects Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/4453918e67a137440432381ef3bb2d03841e55d5 tdf#45904: Move SwXTextField Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/1dca3e5839089608b640a1b9f69d1c8521d4b10e tdf#45904: Remove old SwXStyleFamilies Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/e346c663e8ae835e9b1a618d7a5781bc1da9004e tdf#45904: Remove old SwXDocumentIndexes Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/3b2d95ab67456c7d7b5e51ffcb664702c6c4d71b tdf#45904: Remove old SwXFieldEnumeration Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/30b7721f59d9ccfce7e2b40916309adff8ad851c tdf#45904: Remove old SwXFootnotes Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/b0652124dc92d5f62cef19f63a98aa8b68f5a850 tdf#45904: Remove old SwXParagraphEnumeration Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/38170c21461a5933fe6b2341532ef6527b5a65b6 tdf#45904: Remove old SwXAutoTextContainer Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/d1fef008f10da02700fe9d46bc86c3a50cae7a21 tdf#45904: Move _DocumentIndexMark Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/0ab3f09011e4c4c1b85dda72f81f252899162ab5 tdf#45904: Move _XFootnote Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/9a4f776e5ad7e0b47a884765a11c72a8f7ada6dc tdf#45904: Remove old SwXReferenceMarks Java test It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
anfanite396 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/8496f805da8ea9f2585b7485b448dda52557db9a tdf#45904: Move _Footnote Java tests to C++ It will be available in 24.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Luv Sharma committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/0a83e6dfaff35bf8ee74d6d7f49bb1b2df0958c8 tdf#45904 Remove old SwXBodyText Java test It will be available in 24.8.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Luv Sharma committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/9241b739c78c5becad434ac8d381104d8dc243aa tdf#45904 Remove old SwXTextTable Java test It will be available in 24.8.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Luv Sharma committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/35d859d1ae23ed1fe3ea92a1d75be5f31a4241b7 tdf#45904 Remove old SwXFootnoteProperties Java test It will be available in 24.8.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Luv Sharma committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/907c5d684daeb055183abb9175405c6d68fb1f49 tdf#45904 Remove old SwXFootnote Java test It will be available in 24.8.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Luv Sharma committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/26d0ce6fd07bfdabc35d01dbc385974f570a59c6 tdf#45904 Remove old SwXFootnoteText Java test It will be available in 24.8.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.