summaryrefslogtreecommitdiff
path: root/sw
AgeCommit message (Collapse)Author
2018-12-08Cleaned up resource file for word countMatthias Seidel
Notes: prefer: d499ecfe451d3fcb4dc47b2c4f104ca6faa81e62
2018-09-20i113385 - Use correct UNO commands for object allignment (Frame and OLE toolbar)Matthias Seidel
See IDs 10131-10136: https://wiki.openoffice.org/wiki/Framework/Article/OpenOffice.org_3.x_Commands#Global_commands Notes: ignore: aoo
2018-08-26Fixed typo (meaningfull -> meaningful)Matthias Seidel
Notes: prefer: 9b6062afb325c0396d88fdc80a994ec0ccde4852
2018-08-03Cleaned up resource files.Matthias Seidel
Notes: prefer: b846677427015231d4b377bbcae9ae3618baf1cf
2018-08-01Fix SwCntntFrm::CalcLowers() so that it visits all on-page objects.Don Lewis
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. Notes: reject: unknown purpose
2018-07-15Rearranged OLE Toolbar according to help pageMatthias Seidel
Notes: ignore: aoo
2018-07-12Cleaned up dialog for Columns, increased the height a bitMatthias Seidel
Notes: prefer: c38a1de224b911387fba74ae3039d634509085fb
2018-05-31Fixed typos:Matthias Seidel
contructor -> constructor convinient -> convenient Notes: prefer: 48f0a5ed3501e0b0a55cc71f85b4d1aee5a9f4ed
2018-05-02Don't use !this as an alias for a constant that evaluates to false inDon Lewis
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. Notes: ignore: obsolete
2018-01-30Translated German abbreviation (ggfs.) in commentMatthias Seidel
Notes: prefer: 6d3b26829b5f30ea934249ef88eb10b2507969f1
2018-01-30Be slightly less tricky and changeDon Lewis
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. Notes: prefer: 8bc3751ea3ce1162137df2d0e10502cd24a3cb92
2018-01-17Fixed typosMatthias Seidel
Notes: prefer: 7f56e58148602f75b7b5ccccf1860dc65c4620d0
2018-01-16#i127662# send better window position to input method for suggestion windowTsutomu Uchino
Notes: ignore: obsolete
2017-12-01Security fixes from 4.1.5pats
Notes: prefer: a4104344f48eb27651d4d88317bceb10b49c033d
2017-10-09Increased length for localized stringsMatthias Seidel
Notes: ignore: obsolete
2017-10-01Minor change to dialog for WriterMatthias Seidel
Notes: ignore: obsolete
2017-09-27Minor change to dialog for WriterMatthias Seidel
Notes: ignore: obsolete
2017-08-16Align w/ AOO414 on these fixesJim Jagielski
Notes: prefer: 74844277cc2194c9e43f5bd7a6f78a9603da32f3
2017-03-29Fixed typosMatthias Seidel
Notes: prefer: 423beaf852aefb6a62882ac0ca55443113fda8b1
2017-03-29Fixed typosMatthias Seidel
Notes: prefer: 2175ea13ce37e46e83c3bd7da747eb2552a4030c
2017-02-08i101100 - Fix some aliasing issues.Pedro Giffuni
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. Notes: prefer: 11513ddf5b05cb7b3c1e91f9728159b9be3a5da2
2017-01-18Fix a main/sw subsequent test. The BackColor of a page style is irrelevantDamjan Jovanovic
since we only want to test changing it, and it only seems to have meaning when the FillStyle is color, which it isn't. Patch by: me Notes: ignore: obsolete
2016-11-10#i39199# Translated comments from German to EnglishMarcus Lange
Notes: prefer: 0b081027fecbfdcdee6ab4e36e22123f3cd4cfde
2016-11-10#i39199# Translated comments from German to EnglishMarcus Lange
Notes: prefer: ed870efe80397042d8f51d2ca7002025ba4e111f
2016-09-01Fix by far the largest source of -Wtautological-undefined-compareDon Lewis
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. Notes: prefer: 16889f355d1f7157bad84b42ad5a1b2b715ae767
2016-08-31Get rid of the inline version of FindFtnRef() that just calls itself,Don Lewis
which causes infinite recursion. Callers should just use the external method. Notes: prefer: 7b58b777bd15d5f34375e0325e4838e07f22dedc
2016-08-07Merge branches/gbuild-reintegration to trunk.Damjan Jovanovic
Notes: ignore: obsolete
2016-02-14#i126635# Possible null pointer referenceKay Schenk
patch by: orcmid Notes: prefer: a576789ed3c2cf429e6fc818e8ffd10dccda4d56
2015-12-25Resource leakPedro Giffuni
CID: 705753 Notes: prefer: ff50e9ac7145e0d1accf980560ef50c272e427dd
2015-11-29initialize pStatePedro Giffuni
Notes: prefer: 17605133e01c7a58d5e2f10c441bf67582ae4898
2015-11-29Resource LeakPedro Giffuni
CID: 705767 Notes: prefer: 9f5e82598fc3d145b83d5c6df0f7b5668408608e
2015-11-29Resource LeakPedro Giffuni
CID: 705766 Notes: prefer: 5ac84ff884b491df4631d78b3c4ba74eddb0b1a5
2015-11-29Resource LeakPedro Giffuni
CID: 705762 Notes: prefer: 33f400da4a78cbbc40fe20beedad5a7ca756cfbe
2015-11-29Resource LeakPedro Giffuni
CID: 705761 Notes: prefer: 17d42fdfdf1428b1e48dfab9f71a759b8c767ec4
2015-11-29Resource LeakPedro Giffuni
CID: 705760 Notes: prefer: b1231b5ed214d449347d69bc3d29616377655d20
2015-11-27Resource leakPedro Giffuni
CID: 736503 Notes: prefer: 293890e0d07d0f28cd10bfe7c2bf53865dbfb1fc
2015-11-24Use after FreePedro Giffuni
CID: 1158520 Notes: prefer: 9fda4ee058d07d5909fdd0b39bb63527954e9b8a
2015-10-06#i126572# Use correct priority when updating links.Andrea Pescetti
Notes: prefer: 77cc71476bae2b3655102e2c29d36af40a393201
2015-10-06#i125003# Remove some superfluous version.map files from tests. Google Test ↵Damjan Jovanovic
uses executables, not libraries, so they don't need version maps any more. Notes: ignore: googletest
2015-09-25#i126556# Fix bookmarks import in Word filter.Andrea Pescetti
Patch by: Damjan Jovanovic <damjan@apache.org> Notes: prefer: ea70088895ed45dc60abf18319acc1b4fa3018dd
2015-09-25#i107471# Fix alignment settings in CJK text.Andrea Pescetti
Patch by: Mark Hung <marklh9@gmail.com> Notes: prefer: 7e383cb50c6020b86ac7857ece8a6273b7eb1a5e
2015-09-25#i126558# Fix size of graphic objects in Word filter.Andrea Pescetti
Patch by: Damjan Jovanovic <damjan@apache.org> Notes: prefer: 755b9320c81948358a1d4104c8875594b5700d39
2015-09-25#i71292# Fix/remove conditional rotate for CJK.Andrea Pescetti
Patch by: Mark Hung <marklh9@gmail.com> Notes: prefer: 929954e0108897c4882660b4ce9cb5d4cf1077ec
2015-09-20#i126529# Bullet should be apart of AccessibleTextDamjan Jovanovic
Patch by: Niklas Johansson <sleeping dot pillow at gmail dot com> Notes: prefer: 64bf04de183a63d32fddf9376307b7f991a4519a
2015-09-20#i125003# migrate main/sw from cppunit to Google Test.Damjan Jovanovic
Notes: ignore: googletest
2015-08-24#i126476# Patch by: Mark HungKay Schenk
Notes: prefer: 6cd04e9ea447a4828a6fc03d47a7d136f3914501
2015-01-31#i53718# add support of paper size for label documentTsutomu Uchino
Notes: prefer: 80a72c4cc7edc6b4c0b88d841500617cd733cbf7
2014-11-28Issue 125400 - CJK numbering ordered list fallback to Arabic numeralsSteve Yin
Contributor: Mark Hung Notes: prefer: d30a8ec448bcd08c6a52a37d6ae41a4b71c235da
2014-10-19#i23872 Delete the space with ctrl-backspace consistentRegina Henschel
Author: Samuel Mehrbrodt s.mehrbrodt@gmail.com transfer to AOO: Volkan volkangezer@gmail.com Notes: prefer: 083114bb132b879cfb899361ece375c8580ae505
2014-10-07i125698 Finetuned visualization for aligned AAed areasArmin Le Grand
Notes: merged as: 1e09d294f443f015e51c601d1b02f19389fb90ac