Commit graph

305771 commits

Author SHA1 Message Date
Noel Power
d87676da22 simple compile test for use of 'Enable' in a Dim statement
Change-Id: I051dbb5cd56fe61e2b0aea1184dcdb03c6413834
2012-05-14 12:01:08 +01:00
Muthu Subramanian
e9512baf22 n720443: Ignore autorotation of chart labels.
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.
2012-05-14 16:13:27 +05:30
Tor Lillqvist
bae852548b No CUPS for Android or iOS
Change-Id: I34b65232b11111fef6473577decc0849d3443fce
2012-05-14 11:44:47 +03:00
Michael Meeks
1d32c56f36 sot: re-work OLE2 offset-to-page computation
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.
2012-05-14 09:41:02 +01:00
Michael Meeks
c948e655f8 Add helpful instructions nearby encrypted CVE files. 2012-05-14 09:20:17 +01:00
Ionut Biru
704f3155cc poppler 0.20 changed its api
Modification introduced in
http://cgit.freedesktop.org/poppler/poppler/commit/?id=c0affb1845c339f89ca67608cb9fd9134ff902f5

Signed-off-by: Ionut Biru <ibiru@archlinux.org>
2012-05-14 10:06:52 +02:00
Miklos Vajna
2b92546ee3 fdo#49750 findbar: try to fill empty textfield with selected text
Change-Id: I583bb91e7fc325557abcc0756506133112da895c
2012-05-14 10:03:02 +02:00
Norbert Thiebaud
73c40f9574 fix issue with repeated I in case of amend commit
Change-Id: I2f0f02fb545ae6d63f2d4e46327f6ee402ab608c
2012-05-14 02:37:52 -05:00
Tor Lillqvist
f5ea2b5fa8 Generate a proper (?) rtlbootstrap.mk for a MSC build, too
Change-Id: I35a1a270f5eab2250ed0ef50c6bf6c9dbec4f42e
2012-05-14 10:28:41 +03:00
Fridrich Štrba
6afc233cd4 Fix libwps debug build
Change-Id: I6482b0c1844578f67129e74ae64b981100924b90
2012-05-14 08:48:24 +02:00
David Tardon
dd49c193de make build work again with older ICU
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
2012-05-14 08:27:32 +02:00
Markus Mohrhard
5a5d80ce54 copy color scales correctly
Change-Id: I I I0f3ce313928ffa85f563e4162398816bf3ab2fdc
2012-05-14 07:51:23 +02:00
Markus Mohrhard
596e40f9a2 fix crash in ScColorScaleEntry's c'tor
Change-Id: I1cf60db16e5e6c82589b6b315680a6dff1761815
2012-05-14 07:51:23 +02:00
Markus Mohrhard
63bfed7bce create real copies for conditional formats
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
2012-05-14 07:51:23 +02:00
Markus Mohrhard
130b2a3949 use correct indentation
Change-Id: I60cb1f1ed4a0068bc39ada14ac629bf20af709f9
2012-05-14 07:51:22 +02:00
Caolán McNamara
20c2411414 Resolves: fdo#49849 implement Unicode 6.1 hebrew line breaking rules
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
2012-05-13 22:46:43 +01:00
Fridrich Štrba
347e345295 Uploading fresh libwps-0.2.6
Change-Id: Ibca4ca12f725ebb315891ede10ea0d1f6c40043e
2012-05-13 23:30:55 +02:00
Eike Rathke
40c8170c52 changes to patch fdo#44456 added calc function DATEDIF
* 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
2012-05-13 13:51:13 +02:00
Winfried Donkers
4e71be4989 fdo#44456 added calc function DATEDIF as in ODF1.2
Change-Id: I082ea20d02bf37d515fc33d627281696fc48fcb6
2012-05-13 13:51:13 +02:00
Caolán McNamara
2068144fdc ensure freshly built icu headers are newer than previous headers
Change-Id: I Icf78937810e1d8ac646805d9f523a4149f45acb5
2012-05-13 09:50:42 +01:00
Caolán McNamara
46f1059083 java berkleydb usage is history
Change-Id: I9c99507e225cc32a8079d10df6e1ce52f69552a4
2012-05-13 09:50:42 +01:00
Caolán McNamara
9ca02a663c duplicate SYSTEM_[LIBJPEG|JPEG] tests
we have both a SYSTEM_LIBJPEG and SYSTEM_JPEG but only SYSTEM_JPEG appears to
be used

Change-Id: Ib1a5da4c907222be33465ce06997f111c4fffe87
2012-05-13 09:50:42 +01:00
Caolán McNamara
2a42638c79 drop debugging spew
Change-Id: I680a5d10d129ff9b7d6d543b0914418eedf078c6
2012-05-13 09:50:42 +01:00
Caolán McNamara
eca06e79c3 callcatcher: update unused code list
Change-Id: I2b21cb0b6d9164b18594e2c122ce242062be276d
2012-05-13 09:50:41 +01:00
Markus Mohrhard
851a92bd02 correctly export formulas in conditional formats to xlsx
Change-Id: I534fb55b735f47124cd9820ba0a986315e263112
2012-05-13 08:44:39 +02:00
Markus Mohrhard
8f531a6cd7 save unique value conditional format to xlsx
Change-Id: Id126500d499e751c351d6ed499af96136039e1f1
2012-05-13 08:44:39 +02:00
Markus Mohrhard
9e14712f85 support export of duplicate values conditional format to xlsx
Change-Id: I35266eabcba5e063bf296fa1d4b356f247458ea1
2012-05-13 08:44:39 +02:00
Markus Mohrhard
8384032fb7 export color scales to xlsx
Change-Id: I251acbb66a4033f69515c1b078ed5a28d0f0cd76
2012-05-13 08:44:39 +02:00
Takeshi Abe
e3bc45b807 removed unused defines
Change-Id: Ida50737f540459bd0e709c49414c3a7f4d042a47
2012-05-13 08:51:39 +09:00
Gábor Stefanik
5c379de958 fdo#46223: Fix Presenter Console help screen layout
Change-Id: I18d2fda46d3a6427b1691c1ff7838097bb25d0ec
2012-05-12 17:48:40 +02:00
Stephan Bergmann
f941184568 Explicitly export nested struct (needed on Mac OS X)
Change-Id: I59b385ce27640845413247d2e117b787f9d8b339
2012-05-12 16:37:50 +02:00
Rene Engelhard
7f92933fd8 actually install nsplugin (again)
Change-Id: Id0dce7de72d538857cf4341bb9e1b30d2cf7e9dc
2012-05-12 16:22:01 +02:00
Julien Nabet
837c864bb3 Replace !var.size() by var.empty()
Change-Id: I936b59a5bf339d1520cbc10e51b1e9fdc937f0f3
2012-05-12 16:15:13 +02:00
Arnaud Versini
bf05937365 Fix memory leak when using XMLPropertyHandler in sw xml filters.
Change-Id: I I I5ddab734595d97486f507f2a6b752b4f0a28087e
2012-05-12 14:24:34 +02:00
Caolán McNamara
27cf5f8140 cross-compilation with mingw32 woes in i18npool
seems the situation is that we link to the mingw32-system-icu but build the
bundled icu natively in order to use its tools at build time. Which means
we need the

ICU_RECLASSIFIED_CLOSE_PARENTHESIS
ICU_RECLASSIFIED_PREPEND_SET_EMPTY

defaults to match the internal icu defaults

Change-Id: I09a693d795b956789170cc65a582a4367366acaa
2012-05-12 09:53:44 +01:00
Julien Nabet
da2f9e3901 Fix uninitialized value
Change-Id: I23e35a6453907e44ff43f63ad1d619920f806d03
2012-05-12 08:34:05 +02:00
Markus Mohrhard
dc6388e4f6 ScConditionalFormat::pRanges needs to be updated correctly
ScConditionalFormat::pRanges must be updated otherwise the duplicate
value check might use the wrong range

Change-Id: I3df7d54cdcd9c8863d5fbd89eff3be83bb73f2a5
2012-05-12 07:03:50 +02:00
Markus Mohrhard
7db060e12f reduce scope of this variable
Change-Id: I I98b7d83aee9f74574a4884f6066e769930e1803a
2012-05-12 07:03:50 +02:00
Markus Mohrhard
5ff6482b51 add color scales to copy document
Change-Id: I03e141746920c7794e18267cf01799d03c7cafb3
2012-05-12 07:03:50 +02:00
Kohei Yoshida
8ed129b22d Unit test for UNO field item implementation.
Make sure the type IDs are associated with correct service names.

Change-Id: I5ff8ec7fb56f2790f9a3eca8e019c784cb27de43
2012-05-11 23:12:28 -04:00
Caolán McNamara
78fcdec5b0 set better mingw32 icu defaults
Change-Id: I57b6d24c3a367ac711231046bada78619a13ab16
2012-05-12 00:30:32 +01:00
Markus Mohrhard
03ca37a303 update references in color scales
Change-Id: Ie86cbd173a21e79d802a03fd112ea01c0cf44116
2012-05-11 23:58:24 +02:00
Matúš Kukan
7327195602 put debugDump behind #if OSL_DEBUG_LEVEL > 2
basebmp/source/debug.cxx is only for vcl/headless/svpgdi.cxx

Change-Id: I I Ib0624d919d7c0c5ce54dbef62fa0b49fd6eb0ab1
2012-05-11 22:48:49 +02:00
Matúš Kukan
5c3615c115 unusedcode: basegfx::tools::equal
Change-Id: I I579fd3de05f78f06af06c53afab1cc70fc700082
2012-05-11 22:48:49 +02:00
Caolán McNamara
f2827fb15f debug foo for mingw32 build
Change-Id: I1d5f9940c6f85269373ccbdc9caa6c5696996c9f
2012-05-11 21:43:19 +01:00
Michael Stahl
3f6d3a4045 fdo#44010: fix vertical text frame borders:
Frames with text direction Vertical RTL have their borders mangled while
painting, everything is rotated 90 degrees and so the model "left" border
ends up being painted as top border etc.  Clearly the new drawing layer
based painting code is very surprised by this and ends up painting only
points instead of lines.
(regression from 0f0896c26f)
2012-05-11 22:15:36 +02:00
Chr. Rossmanith
508fcf698e fdo#48070 fix parsing of arc paths
Change-Id: Iffd726eec08da453e5a72c512ef2df35f22b5573
2012-05-11 21:28:55 +02:00
Chr. Rossmanith
b4d25b7be2 get rid of many USTR()
Change-Id: I7d98f36037f589ea742de53b2a52e2c5bdf7c48f
2012-05-11 21:28:55 +02:00
Michael Meeks
7ed1e9aa17 sot: simplify the storage stream FAT item cache
Change-Id: Icb6fe9341244dfd53300f58ac85560604f53558a
2012-05-11 19:50:04 +01:00
Luboš Luňák
e4450c54ae avoid recursion that can mess up DND setup (fdo#41996)
The way too smart ctor for the DND handler started drag immediately,
causing a race condition that could recurse to setting a handler
again before the first one was actually set, thus immediately again
causing the DND to be stopped, and then possibly later again started,
depending on how the race condition turned out. Use delayed initialization
to avoid this.

Change-Id: I528eddbdc7c52a19675997e4c866506c662cff19
2012-05-11 20:39:01 +02:00