- 14 May, 2012 31 kayıt (commit)
-
-
Caolán McNamara yazdı
Change-Id: Ib119c7bf8e04b8274026159218281cb3f220c8d0
-
Caolán McNamara yazdı
Change-Id: I7cde2a79462c71f4ce6e3ab75152e804ec7260f9
-
Caolán McNamara yazdı
Change-Id: I88fca8854db96fdba1ea9069fb95a237c5b02bb2
-
Caolán McNamara yazdı
Change-Id: I003d1a8ff86f94c15b295e11ad109929708fa561
-
Caolán McNamara yazdı
Change-Id: Iaf1606ee8c3e4f07cea3525813712dd25b0627c6
-
Caolán McNamara yazdı
Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
-
Markus Mohrhard yazdı
Change-Id: Ie85bd4320324ef932102576ca4ccf32c3527796c
-
Markus Mohrhard yazdı
Change-Id: I280e5ab08949415a8179f803177d280540ba0650
-
David Tardon yazdı
Change-Id: Ia330e70e393309dbbad025fc2ede8f4ab41a674c
-
David Tardon yazdı
It still fails to load the file (General input/output error), because RTFDocumentImpl::resolve() throws io::UnexpectedEOFException, but that is a bit better than a crash .-) Example of such a file can be found in fdo#49666 or rhbz#819304 . Change-Id: I I1e575bf8e3194afe063297a4daf3e98eaaa510cc
-
Noel Power yazdı
Change-Id: If8742cb174aa1d017763d3ba42807ac4cf6c7420
-
Petr Mladek yazdı
also ignore "+" sign; remove unused sNumberString variable
-
Eike Rathke yazdı
Calculation needed tweaking. * simplified "m" case, equal dates return 0 anyway, need to handle only date1<date2 * corrected "ym" case to do the same as "m" modulo 12 (years) * fixed "md" case, it is actually straight forward * added comment to "yd" about a difference to Excel where I believe Excel is wrong
-
Eike Rathke yazdı
Get the Excel export straight without writing the _xlfnodf. macro call. We have sc/source/filter/excel/xlformula.cxx, sc/source/filter/oox/formulabase.cxx isn't used for binary export yet.
-
Michael Stahl yazdı
-
Michael Stahl yazdı
PathFormat fails if path does not exist
-
Noel Power yazdı
Change-Id: I051dbb5cd56fe61e2b0aea1184dcdb03c6413834
-
Muthu Subramanian yazdı
If there is a suggested rotation value for the axis, it might be better to ignore the autorotation bool. A better approach would be to improve our autorotation algo.
-
Tor Lillqvist yazdı
Change-Id: I34b65232b11111fef6473577decc0849d3443fce
-
Michael Meeks yazdı
The gotcha here is that if we get ahead of ourselves, and read to the end of the stream, we detect bad chains too early, so instead incrementally build the page chain cache, which is also quicker and behaves more similarly to the previous code.
-
Michael Meeks yazdı
-
Ionut Biru yazdı
Modification introduced in http://cgit.freedesktop.org/poppler/poppler/commit/?id=c0affb1845c339f89ca67608cb9fd9134ff902f5Signed-off-by:
Ionut Biru <ibiru@archlinux.org>
-
Miklos Vajna yazdı
Change-Id: I583bb91e7fc325557abcc0756506133112da895c
-
Norbert Thiebaud yazdı
Change-Id: I2f0f02fb545ae6d63f2d4e46327f6ee402ab608c
-
Tor Lillqvist yazdı
Change-Id: I35a1a270f5eab2250ed0ef50c6bf6c9dbec4f42e
-
Fridrich Štrba yazdı
Change-Id: I6482b0c1844578f67129e74ae64b981100924b90
-
David Tardon yazdı
The recent addition of Hebrew line breaking rules apparently does not work with genbrk from ICU 4.6. Maybe we should just require 4.x (where x is the first version where it is implemented) as minimum ICU version? IMHO it would be better than this insane (and fragile) filtering... Change-Id: Ia2adad3621fa7a2f319a07fb569b1f1c1eb6db7c
-
Markus Mohrhard yazdı
Change-Id: I I I0f3ce313928ffa85f563e4162398816bf3ab2fdc
-
Markus Mohrhard yazdı
Change-Id: I1cf60db16e5e6c82589b6b315680a6dff1761815
-
Markus Mohrhard yazdı
This fixes problems with unique value/ duplicate value entries. The old falt copy process did not respect that the copy needs to point to its own range and therefore the copy was totally useless. This is also necessary for several future new conditional formats like: top n%, top n elements, above average, ... Change-Id: I51b868968812a4e00dca9af2aa51d50b5ef8b855
-
Markus Mohrhard yazdı
Change-Id: I60cb1f1ed4a0068bc39ada14ac629bf20af709f9
-
- 13 May, 2012 9 kayıt (commit)
-
-
Caolán McNamara yazdı
i.e. sync with svn diff -c 31071 http://source.icu-project.org/repos/icu/icu/trunk/source/data/brkitr/line.txt Change-Id: I I I41b3d02f1a0da3b83a9684f29d466660d96254c6
-
Fridrich Štrba yazdı
Change-Id: Ibca4ca12f725ebb315891ede10ea0d1f6c40043e
-
Eike Rathke yazdı
* use operator && instead of 'and' * use correct types * long operator -(Date,Date) * sal_uInt16 GetDay(), GetMonth(), GetYear() * check for error after argument pop and bail out if so * day difference can be pushed and return immediately without further calculation * ensure only one value is pushed * correct calculation of years and months * only complete years and months are to be returned, same day,month in different years is a complete year (birthday-like), same day in different months is a complete month. * "y" returned 1 for 2012-02-29,2013-02-28 or 2012-03-29,2013-03-28 * must be 0 instead * "y" returned 0 for 2011-03-28,2013-03-29 * must be 1 instead * negative values are never returned * reversed arguments are not allowed * algorithm for "md" extracted from Excel behavior, see source * changes to other intervals as well * changed term Format to Interval in FormulaWizard (and code) for clarity * mention interval arguments in FormulaWizard * in sc/source/filter/oox/formulabase.cxx reverted the entry's move from saFuncTableBiff5 to saFuncTableOdf * saFuncTableOdf member's are "Functions defined by OpenFormula, but not supported by Calc or by Excel", this function now is supported by both * instead, changed FUNCFLAG_IMPORTONLY to 0 in entry of saFuncTableBiff5 and added FunctionData::mpcOdfFuncName "DATEDIF" * otherwise with the FUNCFLAG_MACROCALLODF a macro call is generated for Excel export that Excel doesn't know and can only be imported by LibO again, and without the BIFF function identifier the function could not be imported from original binary Excel documents
-
Winfried Donkers yazdı
Change-Id: I082ea20d02bf37d515fc33d627281696fc48fcb6
-
Caolán McNamara yazdı
Change-Id: I Icf78937810e1d8ac646805d9f523a4149f45acb5
-
Caolán McNamara yazdı
Change-Id: I9c99507e225cc32a8079d10df6e1ce52f69552a4
-
Caolán McNamara yazdı
we have both a SYSTEM_LIBJPEG and SYSTEM_JPEG but only SYSTEM_JPEG appears to be used Change-Id: Ib1a5da4c907222be33465ce06997f111c4fffe87
-
Caolán McNamara yazdı
Change-Id: I680a5d10d129ff9b7d6d543b0914418eedf078c6
-
Caolán McNamara yazdı
Change-Id: I2b21cb0b6d9164b18594e2c122ce242062be276d
-