https://bugs.freedesktop.org/show_bug.cgi?id=46172
--- Comment #1 from Leon Stringer <[email protected]> 2012-02-16 07:25:08 PST --- It looks like the problem is with the way the recent documents list is stored in registrymodifications.xcu (on Windows this is in %APPDATA%\LibreOffice\3\user). I don't know whether these were touched during the upgrade but following the upgrade, recently used items were stored thus: <item oor:path="/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/ItemList"> <node oor:name="file:///C:/Users/lstringer/Documents/Testing.odt" oor:op="replace"> <prop oor:name="Filter" oor:op="fuse"> <value xsi:nil="true"/> </prop> <prop oor:name="Password" oor:op="fuse"> <value xsi:nil="true"/> </prop> <prop oor:name="Title" oor:op="fuse"> <value xsi:nil="true"/> </prop> </node> </item> : <item oor:path="/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/OrderList"> <node oor:name="0" oor:op="replace"> <prop oor:name="HistoryItemRef" oor:op="fuse"> <value xsi:nil="true"/> </prop> </node> </item> If I rename registrymodifications.xcu, Recent Documents starts working with LO 3.5.0 now including the file name in the order list (the first <item> element above stays the same): <item oor:path="/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/OrderList"> <node oor:name="0" oor:op="replace"> <prop oor:name="HistoryItemRef" oor:op="fuse"> <value>file:///C:/Users/lstringer/Documents/Testing.odt</value> </prop> </node> </item> With the first format in place the Recent Documents list never gets updated. If you remove these items from registrymodifications.xcu (or convert them to the new format) then the list starts working. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. _______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
