Revision tags: AOO416 |
|
f0c31a2d | 08-Dec-2018 |
Matthias Seidel |
Cleaned up resource file for word count git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1848429 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO416-RC1 |
|
b1bc2d97 | 26-Aug-2018 |
Matthias Seidel |
Fixed typo (meaningfull -> meaningful) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1839231 13f79535-47bb-0310-9956-ffa450edef68 |
55f1b03e | 03-Aug-2018 |
Matthias Seidel |
Cleaned up resource files. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1837382 13f79535-47bb-0310-9956-ffa450edef68 |
649504cc | 01-Aug-2018 |
Don Lewis |
Fix SwCntntFrm::CalcLowers() so that it visits all on-page objects. SwCntntFrm::CalcLowers() walks the object tree walk and it assumes that the objects visited will be at a monotonically
Fix SwCntntFrm::CalcLowers() so that it visits all on-page objects. SwCntntFrm::CalcLowers() walks the object tree walk and it assumes that the objects visited will be at a monotonically increasing distance from the top of the page, so it terminates the walk once it encounters the first object below the bottom of the page. Even though the objects are vertically sorted in each branch of the tree, there is no guarantee that the order of the objects visited in the depth-first walk will be perfectly sorted vertically, so the walk may terminate before visiting all of the objects on the page. Fix this problem by pruning branches when they cross the lower page boundary and only terminating the walk once there are no longer any paths forward. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1837212 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
720043d0 | 12-Jul-2018 |
Matthias Seidel |
Cleaned up dialog for Columns, increased the height a bit git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1835758 13f79535-47bb-0310-9956-ffa450edef68 |
870262e3 | 02-May-2018 |
Don Lewis |
Don't use !this as an alias for a constant that evaluates to false in unconditional asserts. The former requires code to evaluate the condition at runtime and also causes warnings from clang
Don't use !this as an alias for a constant that evaluates to false in unconditional asserts. The former requires code to evaluate the condition at runtime and also causes warnings from clang. While here, translate the associated assert messages. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1830735 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO415 |
|
962ed635 | 30-Jan-2018 |
Matthias Seidel |
Translated German abbreviation (ggfs.) in comment git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1822714 13f79535-47bb-0310-9956-ffa450edef68 |
f04ab36a | 30-Jan-2018 |
Don Lewis |
Be slightly less tricky and change do { } while (!this); to do { } while (0); Computing !this must be done at runtime, whereas the intent
Be slightly less tricky and change do { } while (!this); to do { } while (0); Computing !this must be done at runtime, whereas the intent is for the loop to exit after the first iteration, which can be handled at compile time when using a constant zero. Also, "this" should always be non-NULL in valid c++ code, but if ever happened to be NULL, then this code could loop forever. While here, translate nearby comments. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1822695 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
2bf67293 | 17-Jan-2018 |
Matthias Seidel |
Fixed typos git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1821337 13f79535-47bb-0310-9956-ffa450edef68 |
af7a586e | 16-Jan-2018 |
Tsutomu Uchino |
#i127662# send better window position to input method for suggestion window git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1821262 13f79535-47bb-0310-9956-ffa450edef68 |
ae6fcd72 | 01-Dec-2017 |
Patricia Shanahan |
Security fixes from 4.1.5 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1816791 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO414 |
|
03530200 | 09-Oct-2017 |
Matthias Seidel |
Increased length for localized strings git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1811601 13f79535-47bb-0310-9956-ffa450edef68 |
2e259a7f | 01-Oct-2017 |
Matthias Seidel |
Minor change to dialog for Writer git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810279 13f79535-47bb-0310-9956-ffa450edef68 |
b09dd3e7 | 27-Sep-2017 |
Matthias Seidel |
Minor change to dialog for Writer git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1809886 13f79535-47bb-0310-9956-ffa450edef68 |
eab2447c | 16-Aug-2017 |
Jim Jagielski |
Align w/ AOO414 on these fixes git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1805237 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO413 |
|
d486989e | 29-Mar-2017 |
Matthias Seidel |
Fixed typos git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1789384 13f79535-47bb-0310-9956-ffa450edef68 |
c259f162 | 29-Mar-2017 |
Matthias Seidel |
Fixed typos git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1789383 13f79535-47bb-0310-9956-ffa450edef68 |
0618ff6b | 08-Feb-2017 |
Pedro Giffuni |
i101100 - Fix some aliasing issues. This is a very small part of a patch submitted by Caolan McNamara on 2009 to help OOo work with -fstrict-aliasing. It is not complete and for now
i101100 - Fix some aliasing issues. This is a very small part of a patch submitted by Caolan McNamara on 2009 to help OOo work with -fstrict-aliasing. It is not complete and for now I omitted adding -fno-strict-aliasing to many makefiles. This does require a lot more attention and will have to be completed at some point because newer versions of GCC enable strict-aliasing with most optimization levels. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1782205 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
676bf86b | 10-Nov-2016 |
marcus |
#i39199# Translated comments from German to English git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1769228 13f79535-47bb-0310-9956-ffa450edef68 |
a3842161 | 10-Nov-2016 |
marcus |
#i39199# Translated comments from German to English git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1769121 13f79535-47bb-0310-9956-ffa450edef68 |
5f22f2ef | 01-Sep-2016 |
truckman |
Fix by far the largest source of -Wtautological-undefined-compare compile warnings. The class definition for SdrMarkView in svx/inc/svx/svdmrkv.hxx contains two inline methods that t
Fix by far the largest source of -Wtautological-undefined-compare compile warnings. The class definition for SdrMarkView in svx/inc/svx/svdmrkv.hxx contains two inline methods that take a reference argument and perform an &rArg == NULL test on it. The compiler warns that this condition should always be false because dereferencing a NULL pointer to generate a reference is not valid in C++ and a valid reference will never be at address 0. Warnings are generated every time this header is included in a .cxx file. It turns out that there are no callers for the IsGluePoint() method, so just comment out its definition. It also turns out that all the callers of IsPointMarked() pass it a dereferenced pointer, so convert IsPointMarked() to take a pointer argument and modify all the callers to pass a pointer without dereferencing it first. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758862 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
dd5ae8a3 | 31-Aug-2016 |
truckman |
Get rid of the inline version of FindFtnRef() that just calls itself, which causes infinite recursion. Callers should just use the external method. git-svn-id: https://svn
Get rid of the inline version of FindFtnRef() that just calls itself, which causes infinite recursion. Callers should just use the external method. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758637 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 |
|
e79d5b37 | 14-Feb-2016 |
Kay Schenk |
#i126635# Possible null pointer reference patch by: orcmid git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1730406 13f79535-47bb-0310-9956-ffa450edef68 |
2fcb9776 | 25-Dec-2015 |
Pedro Giffuni |
Resource leak CID: 705753 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1721695 13f79535-47bb-0310-9956-ffa450edef68 |