- 05 May, 2015 40 kayıt (commit)
-
-
Richard PALO yazdı
Change-Id: I90611a4855320148f1d4b6e61a420ada47308c28 Reviewed-by:
Michael Stahl <mstahl@redhat.com>
-
Stephan Bergmann yazdı
Change-Id: Ia4c241040c52631df86c5bb7a95bca6af234251f
-
Stephan Bergmann yazdı
...with 7ebed1d6 "fix windows build" Change-Id: Ibb8182cbfab47fed117c731f24fa90519b20653b
-
Noel Grandin yazdı
Change-Id: I5d02ba0db00e11af3c17eaf77ce19c635a52077f
-
Noel Grandin yazdı
Change-Id: I4d19f868a618cb135aa7a949222972dc35b47d2a
-
Noel Grandin yazdı
Change-Id: I97160fc51dc16ff92b06d44570298eeec637e132
-
Julien Nabet yazdı
Change-Id: Icf080bb9f21ef75487d43d8a582625be512968c4 Reviewed-on: https://gerrit.libreoffice.org/15630Tested-by:
Eike Rathke <erack@redhat.com> Reviewed-by:
Eike Rathke <erack@redhat.com>
-
Philippe Jung yazdı
When control is no longuer valid, skip emission of notification - chaining to the parent When opening a popup dialog by right click and immediately pressing ESC immediately, LO crashes. A focus event listener is still registered. It triggers an event on a component previously freed. Change-Id: Icfc941849be5d50e2477d4e92afff844f76892d8
-
Stephan Bergmann yazdı
Change-Id: I8d38521f08441f123a236729c01909f2da4ec478
-
Norbert Thiebaud yazdı
time(NULL) is a poor seed. It is quite predictable and multiple instance starting in the same second will get the same seed and therefore the same pseudo random number sequence Use std::random_device, witch is meant to provide 'true' random data.. mix time(NULL) just in case the std implementation is crappy. PS: sadly std::random_device.entropy() cannot be relied on as clang and gcc are known to return 0 despite their random_device being non-deterministic, hence the prophylactic systematic mixing with time(null) Change-Id: I44dab9970f8f0388dc1c99e9816d49d1afbecf18 Reviewed-on: https://gerrit.libreoffice.org/15591Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Michael Stahl <mstahl@redhat.com>
-
Stephan Bergmann yazdı
Change-Id: If6643acec764def691a3229655a992ae852e1238
-
Stephan Bergmann yazdı
Change-Id: Ibd9d3858f833c24f38f982a941353204d9aa9081
-
Stephan Bergmann yazdı
Change-Id: If0b59a15a2fa740760419b1dc3345cf665857114
-
Stephan Bergmann yazdı
Change-Id: I189937950325dc4ef663f7f49cb45f38f8537de9
-
Philippe Jung yazdı
Adds Crop (by handles) to writer. Proposal of new Format menu and image context menu organisation. This is part of a serie of 4 patches that adds Save graphic, Change Picture, Edit with external tool, Crop (by handles) in all products (scalc, sdraw, simpress, swriter). Main menus, toolbars and contextual menus are updated accordingly. Change-Id: I6fe8907e08519326c78f0bc71f27032b5716bb8e Reviewed-on: https://gerrit.libreoffice.org/15590Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Jan Holesovsky <kendy@collabora.com>
-
Philippe Jung yazdı
Adds Save graphic, Change Picture, Edit with external tool, Crop (by handles) to scalc. Proposal of new Format menu and image context menu organisation. This is part of a serie of 4 patches that adds Save graphic, Change Picture, Edit with external tool, Crop (by handles) in all products (scalc, sdraw, simpress, swriter). Main menus, toolbars and contextual menus are updated accordingly. Change-Id: I7f5cf2d1eb3870245684eadf5909fe590d56bf42 Reviewed-on: https://gerrit.libreoffice.org/15589Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Jan Holesovsky <kendy@collabora.com>
-
Philippe Jung yazdı
Adds crop feature to SdrObject. In EndSdrDrag related to Crop, there is a new branch. If object is a regular SdrGrafObj (known inside svx), it is used. Else, a virtual method on the object is used. This enables to forward End of crop action to SwVirtFlyDrawObj objects (when you crop with handles in writer). Regarding writer, coordinates based on Twip/MM100 are used, not the matrix based one. This is part of a serie of 4 patches that adds Save graphic, Change Picture, Edit with external tool, Crop (by handles) in all products (scalc, sdraw, simpress, swriter). Main menus, toolbars and contextual menus are updated accordingly. Change-Id: Ie1a133d18487f51bb9c44ae2f000e63d911bf6b3 Reviewed-on: https://gerrit.libreoffice.org/15588Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Jan Holesovsky <kendy@collabora.com> Tested-by:
Jan Holesovsky <kendy@collabora.com>
-
Noel Grandin yazdı
Error is "ambiguous call to overloaded function" Rename methods to something more specific to avoid this. Change-Id: Iac275e38cf7fb06be55cd859041acc641c13db35
-
Michael Meeks yazdı
Change-Id: Ice92188b097974b8e305c0180a791e25ed537054
-
Tor Lillqvist yazdı
Change-Id: I1d637285b6b6ef64b83ab759bd4a379713bbf96b
-
Miklos Vajna yazdı
With this, it's finally possible to load a .odb file embedded inside a .odt. Change-Id: Ib5eec603ce958abd848e456871aacfad4ab0a8b7
-
Miklos Vajna yazdı
Change-Id: I4378e229c771cf79a694086b7a4ba4ac2e36b8f7
-
Stephan Bergmann yazdı
...not a Timer, since d843f3de "changed timers to idle" Change-Id: If8c6a52d6fb7b1e392e8f31bc8f0db22b2f049e1
-
Stephan Bergmann yazdı
Change-Id: Iaaf0c93e5b28c0f7dbe4f02eda8beeae30708100
-
Tor Lillqvist yazdı
If used at all, lcl_ is supposed to be used for static functions truly local to one source files. The functions here occur in several source files (well, two, the one where they are defined and one other) so they are not "local" in that sense. (But they could be local in the one file that uses them...) Also, they are already in a basegfx::internal namespace. While at it, drop the :: prefix eyesore from basegfx::internal, and align parameter lists consistently. Change-Id: I68b91075e0b1779ac0fa884d8f9e956f1ab7b308
-
Noel Grandin yazdı
Change-Id: I90dd921077bbfc57200e398e7959306f26c65cfe
-
Noel Grandin yazdı
Change-Id: I912187d6c481a2ba61fed9c01998bf6f3c08a6a0
-
Noel Grandin yazdı
Change-Id: Ie7a1a5bc61d19aebd11a00c63c1f4104d893efbe
-
Noel Grandin yazdı
Change-Id: I86e2095bee82a2a6a28b8750e5a328c4d395e2aa
-
Noel Grandin yazdı
Change-Id: Ib765ce5a61916b0598ebb42cb9445a5f09c8d37f
-
Noel Grandin yazdı
Change-Id: I60678dfd1bd0d2e4754dbbe6ba053e90d5870780
-
Noel Grandin yazdı
Change-Id: I64fdb27a7f83f6417a9cd67ed5d2c44072ec7f2e
-
Noel Grandin yazdı
Change-Id: I3d61c1c64f7e781c032a77d5d35998e953bf5c0c
-
Noel Grandin yazdı
Change-Id: Ie6867e04156f40cacee275d5bbf3d63ac4965b30
-
Noel Grandin yazdı
Change-Id: I384a5e60f4b7b2f479c89ef97630519059ab720f
-
Noel Grandin yazdı
Change-Id: Idfd6368eba8e638cf9e6adf998b19ccd1f5e876c
-
Noel Grandin yazdı
Change-Id: Iea68c4e466dd8e1cb7164959a680e5e52542166b
-
Andras Timar yazdı
Change-Id: Id775680d6b2aec1fd84981a72a94fe4934bef003 Reviewed-on: https://gerrit.libreoffice.org/15632Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Andras Timar <andras.timar@collabora.com>
-
Andras Timar yazdı
Change-Id: I0de1cfaa0df460c7bc8e49752b31056f95c30053 Reviewed-on: https://gerrit.libreoffice.org/15628Reviewed-by:
Andras Timar <andras.timar@collabora.com> Tested-by:
Andras Timar <andras.timar@collabora.com>
-
Caolán McNamara yazdı
Change-Id: Iee9c1bd37664188e4dc10b929eb72b6370001417
-