Steps to reproduce: 1/ open a text document in LO 4.0 beta1 2/ go to menu Tools > Outline Numbering... ==> the list with label "Number" is empty Expected : this list should propose several numbering choices No problem in LO 3.6.4 Reproducible in LO 4.0 beta1+ (Build ID: 3c89d9c2b3f2a4bb260624ba97692879ccc3f5c) NB: if Outline Numbering exists in the current document, it works as expected. The problem is only in the dialog used to define / modify outline numbering. Best regards. JBF
I can confirm the Number list is empty in LO 4.0 beta1+ (Build ID: 3c89d9c2b3f2a4bb260624ba97692879ccc3f5c) under Linux. Numbering is working when already created in a document. Kind regards - Sophie
Hello I confirm with Version 4.0.0.0.beta1+ (Build ID: 58889b2f592658a6c68ed13fe604fbbe7eaad96) & Windows 7 64bits Regards Pierre-Yves
Also reproducible with 4.0.0.0beta1 on Mac OS X (10.6.8, Intel).
I can NOT reproduce this issue on Mac OS X with the master build master~2012-11-28_04.07.39_LibO-Dev_4.0.0.0.alpha1_MacOS_x86_install_en-US but I can reproduce it with the build master~2012-12-06_09.19.57_LibO-Dev_4.1.0.0.alpha0_MacOS_x86_install_en-US (no master builds for Mac OS in between, sorry!). So this is a regression, introduced between 2012-11-28 04.07.39 and 2012-12-06 09.19.57 ... This should help a little bit to fix the regression.
Created attachment 71571 [details] proposed patch On pc Debian x86-64 with master sources updated today, I reproduced the problem. I wonder if the problem doesn't come from this commit: http://cgit.freedesktop.org/libreoffice/core/commit/?id=84fd33b7c4e7bf5f8ceb2a8c25426a5b1c713489 Since numbering was linked to this class "swlo:SwNumberingTypeListBox", I searched about it and found 4 ui (included outlinenumberingpage.ui modified in the patch), all located here: sw/uiconfig/swriter/ui/ I noticed each time for the 3 others, these kinds of lines: <property name="hexpand">True</property> <property name="type">16</property> I don't know what these properties correspond and for a reason I ignore, type 16 wouldn't work here since "None" is not in first place (not even in the list!). So I tried at random different types and found that 17 was ok. Obviously, even if numbering seems to work with the patch, I suppose the patch should be modified.
Caolán: would you have some time to take a look? I attached a very simple and short patch but certainly there's something to update here.
yikes, oops.
Julien Nabet committed a patch related to this issue. It has been pushed to "libreoffice-4-0": http://cgit.freedesktop.org/libreoffice/core/commit/?id=e0238a46e0850150e68218734dda86d6bd08523f&g=libreoffice-4-0 Resolves: fdo#58284 outline numbering list is of wrong type It will be available in LibreOffice 4.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.
Julien Nabet committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=ec1f1c16e36b1fa5138604ca08fff1888cf7513c Resolves: fdo#58284 outline numbering list is of wrong type 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.
yup, that's the right fix with type 17 rather than type 16. Thanks for that.