Age | Commit message (Collapse) | Author |
|
Change-Id: I5a878bfb0a6947616b1d0bfaad2541bb46903676
|
|
The shape had no special properties about hori/vert text adjustment, so
it should be hori left / vert top. Then it has vertical layout-flow, so
vert should be top and hori should be right (vert was center).
Change-Id: Ia89d8587b6a822ead45198dc5d1ba23907cc3567
|
|
Change-Id: Ifc055befd5d7436d44e95ce105c52f3c4f061796
Reviewed-on: https://gerrit.libreoffice.org/5768
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
|
|
Change-Id: Ic3e96eebbb914c5b905a8c58532ead9cb01dd41d
Reviewed-on: https://gerrit.libreoffice.org/5721
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I28ad4fe77c9c8474f4f650e9ea5ab309be307fb5
|
|
Change-Id: I9b88fe7c932ba2d1b94eeeff7d35b1d011117316
|
|
Change-Id: I8101f00bc4820ec3100e2c08a9dd21248c909081
|
|
Looks like my compiler eats a lot of things thrown at him but
others don't.
Change-Id: If1d080a545e6c2a17e19b389eeb1714aa0569644
|
|
Additionally encryption and decryption has been refactored.
2 engines have been added: AgileEngine and Standard2007Engine,
which contain core functions for encryption and decryption.
Standard2007Engine refers to encryption and decryption as used
in Office 2007 and AgileEngine refers to encryption and decryption
as used in Office 2010 and 2013. AgileEngine does not yet support
encryption.
Change-Id: Ica1d4d5a109fb204012b92a0c39325fe0b99b793
|
|
Change-Id: I2168358076d9c5ce3271b21cd5a541e51aa502f9
|
|
Signed-off-by: Adam Co <rattles2013@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/5272
Conflicts:
sw/qa/extras/ooxmlexport/ooxmlexport.cxx
Change-Id: I5c8440edad0381e33b64f64bb54aa8f1bc304007
|
|
Compiler plugin to replace with matching number(), boolean() or OUString ctor,
ran it, few manual tweaks, mark as really deprecated.
Change-Id: I4a79bdbcf4c460d21e73b635d2bd3725c22876b2
|
|
Change-Id: Ib16be0bf83120ed7aeb01f29634d51421fc351c8
|
|
Fixed the test cases - false negatives.
|
|
Change-Id: I1c19e8a7d775b1c37649dd36b611d145fd4ce47e
|
|
They had been edited manually a couple of times...
(Instead in the previous commits I edited the generating script and the input
data.)
Change-Id: I3c89d021450a3c3e64055991450c205251fdd41f
|
|
Don't generate code that uses the old RTL_CONSTASCII_USTRINGPARAM horror.
Update the README file to have actually working command lines, and at the same
time make it into a shell script that can actually be run.
Use SAL_INFO with tag oox.cscode to output the stuff that the
generatePresetsCXX.pl is looking for.
Change-Id: I3f8f756fbe8e35857c2bd07beece0f3ab4234e7f
|
|
See
http://social.msdn.microsoft.com/Forums/en-US/73038923-5081-4591-9f50-088454ca9e27/probable-bug-with-updownarrowuparrow.
Change-Id: Ibab5a0e16c40df8caa8abe760c78e54e5cc096b0
|
|
|
|
Placeholders (or shapes without text imported from
the files) have wrong font size. This is because the
size (and probably other text attributes) aren't applied from
the mastertextlist to the shape itself.
|
|
OOXML decryption was implemented in filterdetect. With this the
decryption was moved to a common place where it shares functions
and constants with encryption.
Change-Id: Id334daf7c2eb1e18735d6a500132f6bb61bb3ba0
|
|
Change-Id: If1d8a48e115cd7fbaa0032791275b3b49684d748
|
|
Change-Id: Ic7ee570935b5d827dc01a483877ea5021da5abea
|
|
Change-Id: I1fcd578955a1f65921c8891916e239bc6f0b9748
|
|
Avoid a (presumably bogus) warning produced by gcc 4.7 and 4.8, at least those
in the Android NDK, in an optimising compilation. As such the code probably
was OK, even if a bit ugly and suboptimal, as it doesn't seem to be sure
whether various buffer lengths should be hardcoded or can be variable, etc.
Change-Id: I29790cb7a9cb65735e4ebb9a1a198f8575282ecf
|
|
Change-Id: I5c98b96b77b1366884bdc593cf29d32d4e60de7b
|
|
Change-Id: Ibae83ef39dec7270c287ee04e38efa0bc5af48ac
|
|
Change-Id: I44407a15ca338bc7a24b5de8f8a60ad4e4f2b03d
|
|
This enables saving of MS 2007 spreadsheet documents with a password.
The encryption used is the same as used in Office 2007 (however
different than in Office 2010 and 2013 which use "agile" encryption).
Change-Id: I3539e811d95b6f9178246ab269d13bb385a48bd2
|
|
Change-Id: I7892224a118b6566e26b3ffc472c88f3c7f58620
|
|
Change-Id: I37f0081ae0a8af838c9f5bf158b340d726d7d1a3
|
|
1) The timezone correction was inverted.
Imagine we are parsing "2004-03-02T14:18:20+02".
Before correction, aOslDTime contains "2004-03-02 14:18:20".
According to the comment, we want to convert that to UTC
time, so we have to *subtract* 2 hours, not *add* two hours.
From http://www.w3.org/TR/NOTE-datetime:
A time zone offset of "+hh:mm" indicates (...) a local time zone
which is "hh" hours and "mm" minutes *ahead* of UTC.
So if it is 14:18:20 in the timezone two hours ahead of UTC,
it is two hours *earlier* in UTC, namely 12:18:20,
and we need to *subtract* two hours, not *add* two hours.
2) Handling of fractions of a second was buggy:
It reads only one digit after the dot. This could be a valid
implementation decision to handle only deciseconds. However:
1) It then multiplies that by 10^9 (10e8 == 10*10^8, not 10^8!),
and sticks that in the NanoSeconds field... That is 10 times too big:
0.3s == 3*10^8 ns
2) If there were additional digits, it then looks for the timezone
offset specificator (beginning with '+' or '-') at these additional
digits; it does not skip them: nOptTime is set to 0+3+2, i.e. to 5.
Change-Id: I4738dc069e37f29c8bbd9e689689a933027af840
Reviewed-on: https://gerrit.libreoffice.org/4743
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
|
|
Change-Id: Ib75f2e5e0d77b5a65c6d3d75e7dd477251948bcc
|
|
Change-Id: Ib78b25641ae20a3eb23545649f08b963e34c74ff
|
|
Change-Id: I8230a80b6a530b172e02a08a1a4dd201f533670a
|
|
|
|
Also, contains implementation for a simple duotone filter.
|
|
Conflicts:
sw/qa/extras/ooxmlexport/ooxmlexport.cxx
Change-Id: I0e9fa5e73e802f85f02c3fcc5c276ed0c1cb2a58
|
|
The shapes have detectmouseclick="t" for some reason, leading to the v:fill
tag being written, but the default is solid fill, so if there's otherwise
actually no fill, explicitly say so.
Change-Id: I2a8d24ce4d0da1082b4eefbad0db51e2e6fe1bc9
|
|
Add IsUTC member to:
com.sun.star.util.DateTime
com.sun.star.util.DateTimeRange
com.sun.star.util.Time
Add new stucts with explicit time zones:
com.sun.star.util.DateTimeWithTimezone
com.sun.star.util.DateWithTimezone
com.sun.star.util.TimeWithTimezone
Adapt the sax::Converter to read/write timezones, and fix the unit test.
Everything else just uses default (no time zone), this commit is just
to fix the API.
STRUCT: /UCR/com/sun/star/util/DateTime
nFields1 = 7 != nFields2 = 8
Registry2 contains 1 more fields
STRUCT: /UCR/com/sun/star/util/DateTimeRange
nFields1 = 14 != nFields2 = 15
Registry2 contains 1 more fields
STRUCT: /UCR/com/sun/star/util/Time
nFields1 = 4 != nFields2 = 5
Registry2 contains 1 more fields
Conflicts:
sc/source/filter/oox/unitconverter.cxx
Change-Id: I01f7a6d082a6b090c8efe71d2de137474c495c18
Reviewed-on: https://gerrit.libreoffice.org/4833
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
|
|
If no LanguageTag instance is at hand use the static methods to convert
between BCP 47 string, Locale and MS-LangID instead of creating
temporary instances.
Change-Id: I9597f768078eb81c840e84a5db5617f26bb7dc09
|
|
Change-Id: I859eaaba3c852127422bd0d0e0db0f9bd62e0d55
|
|
Change-Id: I06d48669804d2ae99c47a0df1ed3c6f45c87a57e
|
|
Conflicts:
sw/qa/extras/ooxmlexport/ooxmlexport.cxx
Change-Id: I32db54e2c49b40bf41005baeba380a4f631d615a
Reviewed-on: https://gerrit.libreoffice.org/4780
|
|
Change-Id: Id476a0eb1f5965098c8cc2e2847547b1d23387eb
Reviewed-on: https://gerrit.libreoffice.org/4753
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Tested-by: Petr Mladek <pmladek@suse.cz>
|
|
|
|
When the import with xlsx ranges fail - try with
internal data table.
|
|
Change-Id: I904142622ac37b394ddedf62bb7d9c099fc9cab4
|
|
Change-Id: I6da069a27d569e4b28c0a8fe783616c767c108d0
|
|
...in files generated by gperf; an alternative could be to use -isystem instead
of -I in gb_Library_use_custom_headers.
Change-Id: I316684ab5342977655a5642903b13e127adaf95c
|