Revision tags: AOO413 |
|
01c0be3d | 26-Feb-2017 |
Matthias Seidel |
Fixed typos (documention->documentation) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1784437 13f79535-47bb-0310-9956-ffa450edef68 |
7b4f4066 | 22-Dec-2016 |
pfg |
Re-enable some Id svn:keywords. Most of these pre-existed in the code, probably due to older version control. New Id keywords were added only in these files: main/solenv/inc/mi
Re-enable some Id svn:keywords. Most of these pre-existed in the code, probably due to older version control. New Id keywords were added only in these files: main/solenv/inc/minor.mk main/vcl/unx/kde4/KDEXLib.cxx The latter are important as they keep release information and we want to maintain such references when new versions are bumped. While here, update the information for KDE. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1775751 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
557fdb96 | 21-Dec-2016 |
damjan |
Use "OpenOffice" instead of "soffice" as our KDE appName. Patch by: pfg Reviewed by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1775507 13f79535-
Use "OpenOffice" instead of "soffice" as our KDE appName. Patch by: pfg Reviewed by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1775507 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
47208bf9 | 21-Dec-2016 |
damjan |
AOO was failing to start on KDE4 with "Couldn't register name ... with D-BUS - another process owns it already!", (which is the wrong error on KDE's part), as the appName passed to KAboutData
AOO was failing to start on KDE4 with "Couldn't register name ... with D-BUS - another process owns it already!", (which is the wrong error on KDE's part), as the appName passed to KAboutData's constructor was "Apache OpenOffice" and spaces and slashes are not allowed (see https://forum.kde.org/viewtopic.php?f=64&t=62521). Let's use "soffice" instead, as appName is an internal name after all. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1775369 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
6de2905b | 04-Dec-2016 |
damjan |
Standardize all gbuild bridge makefile.mk files (main/*/prj/makefile.mk) to the version that sets gbuild debug flags from the configure.ac debug settings, and make this the standard gbuil
Standardize all gbuild bridge makefile.mk files (main/*/prj/makefile.mk) to the version that sets gbuild debug flags from the configure.ac debug settings, and make this the standard gbuild template too. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1772520 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
30928f54 | 15-Oct-2016 |
pfg |
CFF: raise FDArray count limit to 256. Per spec, the maximum for FDArray elements is 256, something that is not common but some people like to test the limits [1]. Thanks to Aud
CFF: raise FDArray count limit to 256. Per spec, the maximum for FDArray elements is 256, something that is not common but some people like to test the limits [1]. Thanks to Audrey Tang for posting a patch under CC0 Universal declaration which I found by accident. [1] http://blogs.adobe.com/CCJKType/2012/05/all-unicode-cfr.html git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1765111 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
7d294ebc | 15-Oct-2016 |
pfg |
Adapt TrueType font detection for the Apple specification variant. From the Microsoft OpenType Specification: https://www.microsoft.com/typography/otspec/otff.htm NOTE: The Appl
Adapt TrueType font detection for the Apple specification variant. From the Microsoft OpenType Specification: https://www.microsoft.com/typography/otspec/otff.htm NOTE: The Apple specification for TrueType fonts allows for 'true' and 'typ1' for sfnt version. These version tags should not be used for fonts which contain OpenType tables. ____ We are complying with the OpenType usage fine but we were not taking into account the NOTE so Apple TrueType variants would not be recognized. Apparently valid values are 0x00010000 and 0x00020000. Keep it simple and just assume any value different than zero is valid here. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1765086 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
b296461c | 01-Sep-2016 |
truckman |
Fix -Wshift-negative-value compiler warnings. The result of shifting negative integer values is undefined, so change the operand to be unsigned. git-svn-id: https://svn.ap
Fix -Wshift-negative-value compiler warnings. The result of shifting negative integer values is undefined, so change the operand to be unsigned. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758692 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
851abcd9 | 31-Aug-2016 |
truckman |
Fix -Wformat-security warnings. There are a number of instances where the code calls *printf() to print arbitrary strings and the string is passed as the format argument to *printf()
Fix -Wformat-security warnings. There are a number of instances where the code calls *printf() to print arbitrary strings and the string is passed as the format argument to *printf(). Since these strings might contain % conversion sequences, this is a security hazard. Fix the problem by printing the strings with a "%s" format. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758644 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
0f3868f6 | 31-Aug-2016 |
truckman |
Fix -Wformat-security warnings. CreateT3FromTTGlyphs() uses a bunch of "const char *" variables to hold the format strings for its fprintf() calls resulting in warnings that the form
Fix -Wformat-security warnings. CreateT3FromTTGlyphs() uses a bunch of "const char *" variables to hold the format strings for its fprintf() calls resulting in warnings that the format strings for these calls are not string literals. Suppress these warnings by changing the variables to be "const char * const". git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758639 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
b63233d8 | 07-Aug-2016 |
damjan |
Merge branches/gbuild-reintegration to trunk. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1755455 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO4121 |
|
a4e19be7 | 16-Jun-2016 |
truckman |
#i126999#: fix vcl/source/glyphs/graphite_layout.cxx compile with libc++ 3.8.0 Rename local inline function round() to round2long() to avoid ambiguity with libc++ round() function and be
#i126999#: fix vcl/source/glyphs/graphite_layout.cxx compile with libc++ 3.8.0 Rename local inline function round() to round2long() to avoid ambiguity with libc++ round() function and better describe its functionality. This fixes a compile error when building with libc++ version 3.8.0, which was first observed with FreeBSD 11.0. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1748663 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
2a691cbd | 05-Feb-2016 |
Kay Schenk |
#i126118# More fixes for null second op in ifndef statements. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1728725 13f79535-47bb-0310-9956-ffa450edef68 |
6a5107d7 | 05-Feb-2016 |
Kay Schenk |
#i126118# More changes to fix null operands in ifndef statements. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1728724 13f79535-47bb-0310-9956-ffa450edef68 |
29adf7ff | 05-Feb-2016 |
Kay Schenk |
#i126118# more changes to fix null second op in ifndef statements. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1728723 13f79535-47bb-0310-9956-ffa450edef68 |
b784edbf | 25-Dec-2015 |
Tsutomu Uchino |
#i126753# fix invalid parse of GSUB table for OpenType fonts git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1721674 13f79535-47bb-0310-9956-ffa450edef68 |
487b2be3 | 01-Dec-2015 |
Pedro Giffuni |
Prevent division by zero CID: 735658, 735659 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1717552 13f79535-47bb-0310-9956-ffa450edef68 |
64f438df | 30-Nov-2015 |
Pedro Giffuni |
Fix mismatch in r1717119 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1717188 13f79535-47bb-0310-9956-ffa450edef68 |
7f9eba4c | 29-Nov-2015 |
Pedro Giffuni |
Resource Leak CID: 705772 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1717119 13f79535-47bb-0310-9956-ffa450edef68 |
788ab396 | 24-Nov-2015 |
Pedro Giffuni |
Uninitialized scalar variable CID: 1028321, 1028322, 1028323 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716157 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO412, SNAPSHOT, AOO411 |
|
6dcc4730 | 24-Sep-2015 |
Andrea Pescetti |
#i126560# Fix print job counter reset. Patch by: Damjan Jovanovic <damjan@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1705193 13f79535-47bb-0310-9956-f
#i126560# Fix print job counter reset. Patch by: Damjan Jovanovic <damjan@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1705193 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
af1486d9 | 14-Sep-2015 |
Yuri Dario |
#i118923# OS/2, use pmbidi header from dev toolkit. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702986 13f79535-47bb-0310-9956-ffa450edef68 |
f9bb485f | 24-Jun-2015 |
Herbert Dürr |
#i105098# fix drag&drop insertion of files/images on Mac Fixed-by: Manik <mm30f@yahoo.com> Reviewed-by: Herbert Duerr <hdu@apache.org> git-svn-id: https://svn.apache.org/re
#i105098# fix drag&drop insertion of files/images on Mac Fixed-by: Manik <mm30f@yahoo.com> Reviewed-by: Herbert Duerr <hdu@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1687177 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
8274110d | 19-Mar-2015 |
Kay Schenk |
#126118# Fix malformed if statements in makefile. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1667884 13f79535-47bb-0310-9956-ffa450edef68 |
fe912e68 | 21-Jan-2015 |
Ariel Constenla-Haile |
i46871 - Add French translation for Space key git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1653444 13f79535-47bb-0310-9956-ffa450edef68 |