summaryrefslogtreecommitdiff
path: root/sw
AgeCommit message (Collapse)Author
2012-04-17fdo#38635: sw: fix border corner gaps:Michael Stahl
The start and end points of the vertical and adjacent horizontal borders were apart by 1.5 to 3 twips, leading to small visible gaps in the corners. This is fixed by using lcl_AlignWidth/lcl_AlignHeight on the border widths, and by always computing the start/end positions from the outer edge, which makes the horizontal and vertical start/end points match. (regression from 0f0896c26fb260d1bbf31d7a886df3f61837f0f2)
2012-04-17fix UNO ZOrder readingLuboš Luňák
http://lists.freedesktop.org/archives/libreoffice/2012-April/030206.html
2012-04-16fdo#38215: forgot idiotic C++ syntax (fix 0868a0155a)Michael Stahl
2012-04-16String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara
2012-04-16fdo#38635: fix border printing:Michael Stahl
Apparently this special case in lcl_PaintLeftRightLine for printer output devices is no longer necessary with the new drawing layer borders and causes the vertical border lines to be far too short, leading to visible gaps in the PDF. (regression from 0f0896c26fb260d1bbf31d7a886df3f61837f0f2)
2012-04-16fdo#38215: merge consecutive border lines:Michael Stahl
This re-implements the merging that was done by SwLineRects::AddLineRect, SwLineRect::MakeUnion with the drawing layer border lines. This is used to merge borders of paragraphs and of tables that have the "separating" border-model, which fixes both the tiny dividing gaps between successive borders in the second bugdoc and the weird subtly differently rendered successive borders in the first bugdoc. (regression from 0f0896c26fb260d1bbf31d7a886df3f61837f0f2)
2012-04-16sw: create horizontal border lines with start left and end rightMichael Stahl
2012-04-15sw: also test RTF export of zoom levelMiklos Vajna
2012-04-15remove extraneous '2'Michael Meeks
2012-04-15try to translate comic writer commentMichael Stahl
2012-04-15testcase for fdo#39053Miklos Vajna
2012-04-15sw: implement writing of RTF_VIEWSCALEMiklos Vajna
2012-04-15writer redlining unit test starts to do something usefulMichael Meeks
2012-04-15implement RTF import of zoom levelMiklos Vajna
2012-04-14dmapper: fix import of odd/even page breaksMiklos Vajna
2012-04-14Resolves: fdo#48640 handle various busted rtf docs without hangingCaolán McNamara
2012-04-14optimize: traverse children with WINDOW_FIRSTCHILD/WINDOW_NEXTCaolán McNamara
2012-04-13sal_Int32 conversion warningLuboš Luňák
2012-04-13remove unused variablesLuboš Luňák
2012-04-13Begin translating commentsPhilipp Weissenbacher
2012-04-13Convert macro to local const variablePhilipp Weissenbacher
2012-04-12move dependency on localedata_en to i18npoolMatúš Kukan
2012-04-12Translate German commentsPhilipp Weissenbacher
2012-04-12++I_hate_sal_Int32Luboš Luňák
2012-04-12write out unique id for wp:docPrLuboš Luňák
"If multiple objects within the same document share the same id attribute value, then the document shall be considered non-conformant." . Although it apparently does not matter much in practice.
2012-04-12wp:anchor attributes do not have w: prefixLuboš Luňák
2012-04-12wp:docPr title is not in ecmaLuboš Luňák
2012-04-12write proper title and description for wp:docPrLuboš Luňák
2012-04-12write w:relativeHeightLuboš Luňák
the z-order is actually already implied by the order the items are written, but why not
2012-04-12remove formfeedsThomas Arnhold
2012-04-11UniString->rtl::OUStringCaolán McNamara
2012-04-11fdo#44176 dmapper: fix import of titlepg top/bottom marginMiklos Vajna
2012-04-11Translate German commentsPhilipp Weissenbacher
2012-04-10avoid possibility of storagename collision on 64bitCaolán McNamara
2012-04-10fdo#35042: previous color applied instead of "no fill"Aldo Román Nureña
There was a missing line when last select highlight color was "no fill"
2012-04-10move include out of editsh.hxxMichael Stahl
2012-04-10char[] -> const char[].Jan Holesovsky
2012-04-09xmlhelp not built for non-desktop OSesTor Lillqvist
2012-04-09s/pathes/paths/Tor Lillqvist
2012-04-09add package deps for resourcesDavid Tardon
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08rename gb_CppunitTest_uses_ureDavid Tardon
2012-04-08compile- and run-time use of UNO must be splitDavid Tardon
There are unit tests that do not use URE, e.g., in cppuhelper. This reverts commit 33e9f3d3d6b29545ef9df3f5334c015e15caa5c8. Conflicts: sot/CppunitTest_sot_test_sot.mk svl/CppunitTest_svl_urihelper.mk
2012-04-08clean upDavid Tardon
2012-04-08simplify use of configuration from unit testsDavid Tardon
2012-04-08always use --protector for UNO testsDavid Tardon
2012-04-08drop uses_ureDavid Tardon
2012-04-08let use_api handle the use of type rdbs at runtimeDavid Tardon
Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime?
2012-04-08Dump MarkManager::dumpFieldmarks + extractIntFromAny from vbahelperJulien Nabet
2012-04-08gbuild: "use" vs. "add":Michael Stahl
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)