Age | Commit message (Collapse) | Author |
|
In the past, NO_LOCALIZE_EXPORT macro must be used to
skip uneeded parsing of src files which has no localizable content.
It is unsued by now and it is more effective to handle
this files on gmake level:
gb_SrsTarget_add_nonlocalizable_files
gb_SrsTarget_add_nonlocalizable_templates
Plus remove some empty src file.
Change-Id: I8fc9b2db0b5fd7a3379d3c5be970c4fc691f4c53
|
|
Change-Id: I256e0cb228edb85b402e6645fd40f24b7ccf234a
|
|
Change-Id: I352c6b415f0990890702fa21175c196d7f4b12ee
|
|
Change-Id: If1789999363739231986e0e0e82c9d77f5ca0bc7
Reviewed-on: https://gerrit.libreoffice.org/7192
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
AMLOEXT-300
Change-Id: I01f16fb5a00e1c96e40bfcf99e417519cb27e765
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-270
Change-Id: I460354ede9a9666a7b5dcd7c5d125b605e3b3b2d
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-269
Change-Id: I10d33b50f743630ed91daa743017e431754e5659
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-349
Change-Id: Ifd9532d7b73afee1a0d6eb8f2d4522e0356006f5
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-376
Change-Id: I067819191f5926cef31ab50f1ad46d64a1e58a5c
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-279
Change-Id: I6d4d9f3fc67aeeb32b571998ef9ddeba66184449
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-283
Change-Id: I10541f33f65a68d87931d92f520653d7751ae507
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-277
Change-Id: I05b2d703820dab3e284a2356a3e9b1cd9b797247
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-278 FIX
Change-Id: I59bf06c1e8ef138e08a7699fa167034442780322
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
ISEVEN and ISODD
Change-Id: If16b13a22d336d7d21c9034157be0aa38f2415be
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
Change-Id: Ib7be4172e2d9b80869dbfa47674b13f1e03877d3
|
|
Change-Id: I27ada8b5154968e521d9e67f21473aa85776e70e
|
|
Change-Id: Iccd4f2c8b628589c6a184cc561a1e6225c1a9441
|
|
(cherry picked from commit bc44947351f9dcfa6a466618d8bbd47beecdddcb)
Change-Id: I28bf684b030e46bcc8c19767c6d6f6280fe3799d
|
|
Change-Id: I3f0a51c53efdd383d49d978a1e8531afe9dac896
|
|
Change-Id: I08d615e6b53781b5dd9e992204093bdd4901f852
|
|
Change-Id: I6a2e8e69106584b6b7c9af35d4e0e79bf6ef5342
|
|
Change-Id: I58900762efd71cf1b9501a18d7c1c8d460547d64
|
|
We don't want a name starting with a single underscore to be flagged
as function name. Let's do that only for double underscores.
Change-Id: If194a53e3f3ebf18a6e8ad38ebb16922f6e6083b
|
|
Change-Id: I023db5b98518296eb2964abe8c62f60d65d413a8
|
|
Useful for debugging in a more flashy way. But never ever document this
for end users. If you are an end user reading this, use this at your
own risk. You have been warned.
Change-Id: Ibbdb45f576287f707106327704754ffaec27ba3c
|
|
Listeners and broadcasters are M:N relationship. If you want to
destruct them, you easily end up in O(M*N) situation; where for every
listener, you iterate all broadcasters, to remove that one listener.
To avoid that, announce to the broadcasters that they are going to die, and the
listeners do not have to bother with removing themselves from the broadcaster.
The broadcaster will not broadcast anything after the PrepareForDesctruction()
call anyway.
Change-Id: I68d78b23e73bcbb944de9139448b2c20dfa14f62
|
|
Change-Id: If2168a57e0c77cf7fe85d66a6c6fd6a810d45035
|
|
Also, we don't seem to need this solar mutex locking and checking for
needs repaint flag here anymore, and not having these make the streaming
much faster esp on Windows.
Change-Id: I6e8ae82e5d986492ac576d28f11e2afffe954bc2
|
|
... and also read style:vertical-justify
Change-Id: I6c8d2464754485e476216317371e0e2995b5305e
|
|
Patch By: hanya
Review By: jsc
(cherry picked from commit 5dfcb178f89532a92b4565739d3445a56abfd095)
Change-Id: Icc593172c0ea2243d9ceffb0a1cd11ec515a137a
|
|
Change-Id: I56d72d5cb8ea95aa63d4659899cba2f295ce9bea
|
|
Change-Id: I44e4f9a38deac882acbd444b5e7026d5019ea958
|
|
Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
|
|
Change-Id: I3d12d0b376c9c0488d12df8f9d3fe76b1c00a437
|
|
Change-Id: I94ba29d328c443e0f944fef8d33fc25cdc0e9694
|
|
Change-Id: Ie97b9fcdd5fb93d195ea1beb536d5a0ac7bf7cc4
|
|
Change-Id: Ifd2693b36418fa6506ffac1584688e13e7f913f3
|
|
Change-Id: I43a15ad87422201989f3facb0b992ec73d3315ae
|
|
Change-Id: Ieb7ec6ff5f1068dd7ec842263715be622b55c550
|
|
Change-Id: I663824865d6f3dfec83e0b71992d1ab3c9f184f2
|
|
Set to true for export, false for import. If export true, an
XMLPropertyMapEntry with mbImportOnly==true is not added to the
mappings. This to be able to have more than one mappings for import
(for example a current extension namespace and the future namespace
proposed to the ODF-TC, or corrected typos in element or attribute
names), but map only to one entry on export, of course.
Change-Id: Ia01ea949c88eda2f8a6c10f51c59e35e7abdcaf3
|
|
Change-Id: Id5a54a591a42c836884af1fd09dc055f2fce6db5
|
|
AMLOEXT-206
Change-Id: Ibde6be7d2fba7f96912924396e17cc21e4c00826
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
Turn NO_FALLBACK_TO_SWINTERP on in formulagroupcl.cxx for test
AMLOEXT-378 BUG
Change-Id: I1cbc041e1aa1899fa10931e7bfc3f8c8b43066f6
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-378 FIX
Change-Id: Ie70185694f9e7ab3a955994948146b9adb60f650
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
turn NO_FALLBACK_TO_SWINTERP on in formulagroupcl.cxx for test
AMLOEXT-377 BUG
Change-Id: I0980604d643f3875e4dfe7dcd20f3cad186d72f6
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-377 FIX
Change-Id: I2e656e9d943179b4da1c1b104ac77f0edcb2f86e
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-365
Change-Id: I968ca9cc202706698a3fc5e957c4941c234779f7
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-375 FIX
Change-Id: Ie41c66570db2c9b752d987de421bb7310b244611
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|
|
AMLOEXT-374 FIX
Change-Id: I3deec32d09058483043211d920519bb4fd1e7018
Signed-off-by: haochen <haochen@multicorewareinc.com>
Signed-off-by: Wei Wei <weiwei@multicorewareinc.com>
Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
|