d16f1dca | 18-Jan-2013 |
Pedro Giffuni |
Add namespace extension: may reduce some warnings. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1435011 13f79535-47bb-0310-9956-ffa450edef68 |
45fd3b9a | 10-Jan-2013 |
Armin Le Grand |
#121504# Support for alpha channel in clipboard for all systems git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1431512 13f79535-47bb-0310-9956-ffa450edef68 |
ff3f4ebc | 10-Jan-2013 |
Oliver-Rainer Wittmann |
#121388# - Adapt naming "OpenOffice.org" --> "Apache OpenOffice" -- impact on corresponding strings in the UI, folder names, package names, ... git-svn-id: https://svn
#121388# - Adapt naming "OpenOffice.org" --> "Apache OpenOffice" -- impact on corresponding strings in the UI, folder names, package names, ... git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1431253 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
34d5e9da | 04-Jan-2013 |
Herbert Dürr |
reverting 1428926 as revison 1428922 does the same and was earlier git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1428929 13f79535-47bb-0310-9956-ffa450edef68 |
42f98a8a | 04-Jan-2013 |
Pedro Giffuni |
Clarify comments without screaming. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1428927 13f79535-47bb-0310-9956-ffa450edef68 |
95b0c91e | 04-Jan-2013 |
Herbert Dürr |
#i121561# workaround windows build problem with the new boost functions Stlport 5.2 and newer set the _STLP_HAS_NATIVE_FLOAT_ABS define for all MSVC>=2005, so that the stl::abs() defines
#i121561# workaround windows build problem with the new boost functions Stlport 5.2 and newer set the _STLP_HAS_NATIVE_FLOAT_ABS define for all MSVC>=2005, so that the stl::abs() defines are enabled. Otherwise the compilation fails because only stl::abs(complex<>) gets included which messes things up because it is the only one available after the SFINAE eliminations when the compiler tries to instantiate e.g. boost's atanh using stl::abs() git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1428926 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
a2f0d529 | 04-Jan-2013 |
Pedro Giffuni |
i121561 - Better attempt to fix the Windows build. Revert r1428523. Apparently the problem is caused by a template conflict with STLPort. Special thanks to hdu@ for his incredib
i121561 - Better attempt to fix the Windows build. Revert r1428523. Apparently the problem is caused by a template conflict with STLPort. Special thanks to hdu@ for his incredible detective work. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1428922 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
40889492 | 03-Jan-2013 |
Pedro Giffuni |
i121561 - Attempt to fix windows build issue git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1428523 13f79535-47bb-0310-9956-ffa450edef68 |
76ea2dee | 02-Jan-2013 |
Pedro Giffuni |
i121561 - Use of boost instead of RTL hyperbolic/power functions. Boost provides some well implemented and tested versions of the inverse hyperbolic and small power functions. According
i121561 - Use of boost instead of RTL hyperbolic/power functions. Boost provides some well implemented and tested versions of the inverse hyperbolic and small power functions. According to the documentation the error for these boost versions should be about 1 or 2 Epsilon. Testing shows that for recent Apache OpenOffice this won't cause much difference but Symphony users will see important precision improvements. Special Thanks to Regina Henschel for providing excellent test cases. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1427988 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
22de8995 | 19-Dec-2012 |
Andre Fischer |
i121420: Sidebar can read configuration and display XUIElements provided by extension. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/sidebar@1423885 13f79535-47bb-0310-995
i121420: Sidebar can read configuration and display XUIElements provided by extension. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/sidebar@1423885 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
4772d9af | 13-Dec-2012 |
Armin Le Grand |
#121463# Enhanced handle visualization and some fixes in that region git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1421172 13f79535-47bb-0310-9956-ffa450edef68 |
1396af09 | 10-Dec-2012 |
Armin Le Grand |
#121448# Aligned default fill color/ line style for all apps git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1419491 13f79535-47bb-0310-9956-ffa450edef68 |
f3b46342 | 07-Dec-2012 |
Pedro Giffuni |
i121421 - Mostly cosmetic fixes. Attempt to comply with optional hungarian notation. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1418174 13f79535-47bb-0310-99
i121421 - Mostly cosmetic fixes. Attempt to comply with optional hungarian notation. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1418174 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
05aa205c | 02-Dec-2012 |
Pedro Giffuni |
i121421 - Calc's RAND() behaves poorly on most platforms. The random number generation function from libc was useful for very basic purposes but hasn't kept up with the times. T
i121421 - Calc's RAND() behaves poorly on most platforms. The random number generation function from libc was useful for very basic purposes but hasn't kept up with the times. There are many options to provide a Portable Random Number Generator: one of the most popular and easiest to implement was designed by B.A Wichmann and I.D Hill in 1982. We chose to implement the newer 2006[1] algorithm which is better suited modern platforms and passes DIEHARD and TestU01 - Big Crush tests. Use of libc's rand() has been completely eliminated by using preexisting rtl/random support to generate the initial seeds. Special thanks to orcmid@ for discussion and testing. Reference: [1] B. A. Wichmann and Hill, Generating good pseudorandom numbers, Computational Statistics & Data Analysis, Volume 51 Issue 3, December, 2006, Pages 1614-1622. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1416271 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO340 |
|
464f741a | 16-Nov-2012 |
Armin Le Grand |
#121334# deactivated setting chart OLE background to transparent for better UI experience and better back-compatibility to other OpenOffice derivates git-svn-id: https://svn.apache.org/repos
#121334# deactivated setting chart OLE background to transparent for better UI experience and better back-compatibility to other OpenOffice derivates git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1410282 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
6f0b96b4 | 14-Nov-2012 |
Armin Le Grand |
#121334# turbned back chart non-fill defaults, done the non-fill using tooling when chreating new chart modules git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1409191 13f79
#121334# turbned back chart non-fill defaults, done the non-fill using tooling when chreating new chart modules git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1409191 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
77bc49c4 | 14-Nov-2012 |
Armin Le Grand |
#121334# Changed default for charts background to be none (from white) to allow fill settings in the various apps to have an effect git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo
#121334# Changed default for charts background to be none (from white) to allow fill settings in the various apps to have an effect git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1409174 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
fcd2d2d7 | 09-Nov-2012 |
Wang Lei |
ReFix for #i119707 Cell border lost when saving and reopening the attached xls file. Patch by: Zhang Lu Review by: Wang Lei git-svn-id: https://svn.apache.or
ReFix for #i119707 Cell border lost when saving and reopening the attached xls file. Patch by: Zhang Lu Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1407366 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
ac44b32b | 08-Nov-2012 |
Wang Lei |
#i121200 [Regression][Automation][Performance]Severe downgrade to save xls sample files. Patch by: Zhang Lu Review by: Wang Lei git-svn-id: https://svn.apach
#i121200 [Regression][Automation][Performance]Severe downgrade to save xls sample files. Patch by: Zhang Lu Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1406980 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
09a04e03 | 08-Nov-2012 |
Wang Lei |
#i121285 calc crashes when inserting row's via macro Patch by: Clarence GUO Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/tr
#i121285 calc crashes when inserting row's via macro Patch by: Clarence GUO Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1406978 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
93641701 | 19-Oct-2012 |
Armin Le Grand |
#121236# Added support for fast move of objects with cursor keys (holding shift) for Writer and Calc (was alraedy in Draw/Impress) git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/
#121236# Added support for fast move of objects with cursor keys (holding shift) for Writer and Calc (was alraedy in Draw/Impress) git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1400124 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
0870ec5c | 17-Oct-2012 |
Herbert Dürr |
#i121215# fix the spreadsheet font family Patch-by: Tan Li <litan.test@gmail.com> Review-by: hdu@apache.org git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk
#i121215# fix the spreadsheet font family Patch-by: Tan Li <litan.test@gmail.com> Review-by: hdu@apache.org git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1399203 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
7d1ce60b | 11-Oct-2012 |
Wang Lei |
#i121178 Chart name in Excel is different with the name in AOO Patch by: Clarence GUO Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incuba
#i121178 Chart name in Excel is different with the name in AOO Patch by: Clarence GUO Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1396896 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
39c2db0b | 10-Oct-2012 |
Wang Lei |
#i121120 AOO doesn't support RightB(), LeftB(),LenB() and MidB() in formula Patch by: Zhang Lu Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/a
#i121120 AOO doesn't support RightB(), LeftB(),LenB() and MidB() in formula Patch by: Zhang Lu Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1396491 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
577c0052 | 09-Oct-2012 |
Wang Lei |
#i121136 Improve Spreadsheet performance in some area (Patch 2) Patch by: Wang Lei Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator
#i121136 Improve Spreadsheet performance in some area (Patch 2) Patch by: Wang Lei Review by: Wang Lei git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1395911 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|