summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-22.in files don't need executable bitsMichael Stahl
Change-Id: I8868e19a75376d5abf2d62eda1774c9bd2defa4c
2012-06-22manifest.mf files don't need executable bitsMichael Stahl
Change-Id: I18868b542524f0e94ec7b06e753ee2385ede9a95
2012-06-22.def files don't need executable bitsMichael Stahl
Change-Id: I5dfc43bdd4d8490a47c718dc49acba0ca5f7b526
2012-06-22.pmk files don't need executable bitsMichael Stahl
Change-Id: Ib89d8f72fc7e874968c2d9481df80b53dc982f62
2012-06-22.cxx files don't need executable bitsMichael Stahl
Change-Id: Ic27d7728025b3d666c0ebaf9ec4cd2006d0c89bf
2012-06-22.map files don't need executable bitsMichael Stahl
Change-Id: I2d3120a173097208bd29eb52ab3dea3af870f6ae
2012-06-22.mk files don't need executable bitsMichael Stahl
Change-Id: I3ee442ab6dac31eb7daac32e7a9ed5c6526f07ba
2012-06-22gbuild: fix UnoApiTarget header dependencies:Michael Stahl
The existing situtation of not having any explicit rules for header files does not work because it requires a make restart after the headers are generated in order for the headers to be delivered. Because requiring running make twice to get a complete rebuild is bad, add some rules to force the headers to be delivered immediately. Change-Id: I5b4d5c8f8e9c9d7d0874fc797e62972eaa1dd904
2012-06-22Fixed file opening.Iain Billett
2012-06-23removed unused forward declarations of classTakeshi Abe
except moving ScPostIt into source/filter/inc/xeescher.hxx Change-Id: I85fbfe88e30edce5a48a65c494ced7b2129964ff
2012-06-23removed unused forward declarations of classTakeshi Abe
Change-Id: Ibb3918b95c2518fd83f566bb726273dbf90cf8c8
2012-06-22re-base on ALv2 code.Michael Meeks
2012-06-22LibreOffice4Android can now open actual .odt documents from the file explorer.Iain Billett
2012-06-22LibreOffice4Android now builds.Iain Billett
2012-06-22re-base on ALv2 code.Michael Meeks
2012-06-22fdo#46966 dmapper: fix headery/footery default valueMiklos Vajna
The docx spec doesn't say what is the default value, the rtf spec says it's 720, not 1440. Change-Id: Icb331591d4f2f96a7786f808d99af5974e645f8e
2012-06-22re-base on ALv2 code.Michael Meeks
2012-06-22An new project to combine DocumentLoader with the Android UI. (Not building ↵Iain Billett
- see manifest)
2012-06-22use generic names rather than specific algorithm names when scalingLuboš Luňák
The Lanczos scaling is of very good quality, but it's rather slow, which can be very noticeable with large images, so it's not a very good default for everything. And in general, it's not good to refer to a specific algorithm when all one usually wants is fast/default/best. Some of these changes are a bit of a guess between default/best, but the general logic is that best should be used only for images that won't be large or where the possible waiting does not matter. Change-Id: I53765507ecb7ed167890f6dd05e73fe53ffd0231
2012-06-22re-base on ALv2 code.Michael Meeks
2012-06-22re-base on ALv2 code. Includes:Michael Meeks
Use ksc5601.h header from XFree86 Project Inc. Patch contributed by Oliver-Rainer Wittmann with minor changes from Pedro Giffuni http://svn.apache.org/viewvc?view=revision&revision=1179296
2012-06-22add stock re-based code headers.Michael Meeks
2012-06-22cleanup malingering vendor name in disabled codeMichael Meeks
2012-06-22try somewhat harder to smoothscale objects (bnc#765998)Luboš Luňák
The used bilinear algorithm is apparently of a rather low quality, use the new generic box algorithm instead. That makes it somewhat slower, but the result is cached, and hopefully the speed difference is not that significant. Change-Id: I5a4dbe4851d467babc0d0fdcc3375b35441daf93
2012-06-22make it possible to cache the resulting pixmap with a metafileLuboš Luňák
If the metafile contains just one single bitmap, the drawing code optimizes by just using that one bitmap. It (=the resulting pixmap after scaling etc.) however has not been cached so far, which means smoothscaling (to be done) would be quite slow with every paint. Change-Id: I30950c55fbadfddedc7df31283c66ed064b1a1a6
2012-06-22fix counting of bitmaps in a metafileLuboš Luňák
if( !number ) { ... ++number; } would never get beyond 1. Change-Id: Iac33df3a21280c76fcdd130b699b4ab6466b1f46
2012-06-22be somewhat lenient when doing the one-bitmap WMF optimizationLuboš Luňák
The document from bnc#765998 contains a rather huge WMF with poor quality. It could be smoothscaled to get a much better result, but doing that would be too slow with an image of this size, and it would be done every single time the image would need to be painted, because the resulting image would not be cached. One reason for this is that the WMF appears to be kinda broken (or let's say imprecise [which is no wonder after trying to read things like http://msdn.microsoft.com/en-us/library/dd162607(v=vs.85).aspx and trying to understand what exactly rlcFrames is supposed to be]). Change-Id: I017db36ec96f5405ff5965943003d5aa93018a37
2012-06-22improve/fix commentsLuboš Luňák
Change-Id: Ie3c017eb9c6ceadd4b7982eb2a28c74bf6767631
2012-06-22fix off-by-one when reading WMF/EMFLuboš Luňák
According to docs http://msdn.microsoft.com/en-us/library/dd162589(v=vs.85), cxDest/cyDest are "Logical width/height of the destination rectangle.", so there should be no +1 as there would be if they were the top-bottom corner. Change-Id: Iefa6db8e6131abe785b7878d97df1c891b73011c
2012-06-22fix off-by-one in WMF/EMF readingLuboš Luňák
It's rather lame that Rectangle from tools primarily specifies the rectangle as topleft/bottomright, rather than topleft/size, as that easily leads to confusion such as here. Change-Id: Ice86fae90d9159b98e0896b6c875b99c3e1a3686
2012-06-22remove useless commentsLuboš Luňák
Change-Id: I8702f8e4b76731ab167533478ba754c94114f419
2012-06-22remove unused variableLuboš Luňák
Change-Id: I284bc45abab57127ea972ed4d4b8164b54bfa18b
2012-06-22fdo#50831 fix RTF export of direct run formatting for empty paragraphsMiklos Vajna
Change-Id: I5f0e7aefdea80bbb9cf61b991c5b706bd2023dfa
2012-06-22Some further clean-up of X Session Management codeStephan Bergmann
Change-Id: I0cc47b152835d69e90226f42609eabe5291f55f3
2012-06-22reuse existing codeIvan Timofeev
Change-Id: I10f3d9958679b485cf75d514a38093cbe51d540e
2012-06-22rely on the return value optimizationIvan Timofeev
Change-Id: Ide566aa8bbf6f4128bed598c76269b16acf99a7b
2012-06-22forgot to remove lucene from Makefile.topMiklos Vajna
Change-Id: Iade2c96ed1e2341ee1f132f73898a4c98b66f8a4
2012-06-22Added a preferences activity to set default behaviour.Iain Billett
2012-06-22add missing quotesDavid Tardon
Change-Id: Ic93eebd5fbad25479560e56cd3a2c1da035da45d
2012-06-22Resolves: fdo#45869 we want page preview text to layout for print outputCaolán McNamara
We want text to be positioned as it would be for the the high dpi printed output, not as would be ideal for the 96dpi preview window itself. It is supposed to be a print preview surely. This should avoid getting different text positions/widths shown in the "page preview" of calc than gets used when printed/exported to .pdf Change-Id: Iea3acce3c1f2a7051007c22768329c52a7c1d4ee
2012-06-22convert BitInt signatures to rtl::OUStringCaolán McNamara
Change-Id: Ic461cdb6283fe48e97787b3f1e8950559d576ca9
2012-06-22specify the sourced file with pathDavid Tardon
"man source" says: "If filename does not contain a slash, file names in PATH are used to find the directory containing file‐ name. The file searched for in PATH need not be executable. When bash is not in posix mode, the current directory is searched if no file is found in PATH." Change-Id: I7dc15d30ba925c71d02da2cd8b91ea08192730fc
2012-06-22fixing pyuno bridge on mingw: packaging system-pythonDavid Ostrovsky
Change-Id: Ib46248d217b0161dc20dde0274842bd7381f0cda
2012-06-22Translate German comments in sc/inc/viewopti.hxxFlorian Reisinger
Change-Id: I42284ab7d3bd542d9ef570626a178d697e1f5b2b
2012-06-22more new formulabuffer const cleanupNoel Power
Change-Id: I6a2363a2c4370cdb5050b404f23e9cbcce684dc5
2012-06-22Uploading libvisio 0.0.18, fixing fdo#48602Fridrich Štrba
Change-Id: I8ab9462409bf5e0769d043209a8e2005bfdf4e0a
2012-06-22fdo#50682: Setting DYLD_LIBRARY_PATH in python script appears unnecessaryStephan Bergmann
...and apparently has negative consequences (system CFNetwork framework picking up LO libsqlite3.dylib instead of system one, as DYLD_LIBRARY_PATH overrides recorded installnames). Contrary to the old comment ("so that 'import pyuno' finds libpyuno.so"), what setting LD_LIBRARY_PATH on Linux is still necessary for is so that python.bin (a stripped version of the python executable from external python module) finds libpython2.6.so, as it lacks an RPATH. ('import pyuno' finds pyuno.so apparently on PYTHONPATH, anyway, and pyuno.so in turn dlopen's libpython.{dylib,so} with full path.) (This might make dc82cf021f76ea83ff7a4bcb2d7525f2e111f0cc "Make PyUNO work --with-macox-version-min-required=10.6" irrelevant.) Change-Id: I1c3a6c61d4cc976d85956e587497a13a77689128
2012-06-22Remove empty or non-called methodsThomas Arnhold
empty: ClearTip implOnShapeInserted ImpCopyMarkedPoints ImpMakeDragAttr ImpCopyMarkedPoints ImpMakeDragAttr ImpDelDragAttr ImpMakeCreateAttr Is1stLessThan2nd LinkToListTemplate NewCoreSelection ScrollStart ScrollEnd SetNoOutlineNum non-called: NewCoreSelection Change-Id: Ief273b741aaf49ff66c0dac898686e4def4de0c1
2012-06-22Remove some PCH tracesThomas Arnhold
Is testhxx still useful?! Change-Id: Ic7761214df4e3056c95f1b5dd8f1e3a2ce357d84
2012-06-22n#758883 test remaining issuesMiklos Vajna
Change-Id: I0ec2570aab2fdc645638875b632d8a854fc00b94