- 13 Ock, 2016 35 kayıt (commit)
-
-
Noel Grandin yazdı
Change-Id: I0eef0cb336a2d9450ede01c8fe1c02fbd3b2b57f
-
Noel Grandin yazdı
Change-Id: I654f1b2d3a488e147acdeb790ce9a9ff3dde61f1
-
Noel Grandin yazdı
Change-Id: I5fbb0fe5910d4f430fe4885eae5689592c366500
-
Noel Grandin yazdı
Change-Id: Ib988c919a21f58b7dc302810ec6c63534a51f382
-
Noel Grandin yazdı
Change-Id: I6099667c1a057e36cd10a9d79792fadbb84fbf26
-
Noel Grandin yazdı
Change-Id: I076b589686302a9093eae934533e823f12e003b9
-
Noel Grandin yazdı
Change-Id: I9a5e937905fd71ecbbf9cb215ff6cc2b7defc6f3
-
Noel Grandin yazdı
Change-Id: Ibc83f032bb703559cc643933e53e8670bd6560b3
-
Tor Lillqvist yazdı
Change-Id: Iab4d669ef5dc397786de2aadc2222d4efb7a244a
-
Miklos Vajna yazdı
Change-Id: I1d1ae4a0bf41b89fe2f8db9b44d3b0b7a0dfd1cd
-
Miklos Vajna yazdı
Change-Id: Ida3f77a763c55a7ec8a52a3de4521d18a952e752
-
Miklos Vajna yazdı
Change-Id: I9d2f6e6285e3db6c72d298a7d0b4ebb321936506
-
Miklos Vajna yazdı
Change-Id: I07ce23d698fea9338a85b086a5a3c3418e8c8290
-
Tor Lillqvist yazdı
Change-Id: I3a7e46f96898d535b4beff35fdf7245c0eea989e
-
Miklos Vajna yazdı
Change-Id: I546f644e220069904fc2723f953ce2e6e2bfaca3
-
Stephan Bergmann yazdı
This reverts commit d2dc3c20, conflicts with 200434b1 "-Werror=unused-but-set-variable" pushed slightly earlier.
-
Chris Sherlock yazdı
Change-Id: Icb465506f945ab35a732db488ae9cef8f248d09f Reviewed-on: https://gerrit.libreoffice.org/21417Reviewed-by:
Chris Sherlock <chris.sherlock79@gmail.com> Tested-by:
Chris Sherlock <chris.sherlock79@gmail.com>
-
Stephan Bergmann yazdı
Change-Id: I142e95b9736545c7771274e315419cec12d9cf49
-
Stephan Bergmann yazdı
Change-Id: I01c18a1b8193f491a82988426ac4e673dd68897a
-
Stephan Bergmann yazdı
...at least in Base, and the assumption in 43de9a5b "What these SAL_INFO probably want to tell us..." was wrong Change-Id: Ic9377b72f35c130ecd34dbf76c1f6a0f4b235c69
-
Stephan Bergmann yazdı
Change-Id: I346a88a802ed5b1f373cd10cff794f93cf6d909a
-
Stephan Bergmann yazdı
Change-Id: I82ce013a42ac1cd9bb4f3842e9fba8fbc6056b3c
-
Stephan Bergmann yazdı
Change-Id: Icf46bc3c086a8221e08a4bb18e1f64355043cdbb
-
Stephan Bergmann yazdı
Change-Id: I9e271c3b7ff49d33f4f6f3f8c50b70ac5ce1541e
-
Oliver Specht yazdı
create SwIterator with SwLayoutFrame instead of SwTabFrame the wrong usage worked with tools/rtti because of incomplete type information above of SwLayoutFrame Change-Id: I9967fa1b534fc28dc5e0cd1fa5b64179faa9b94d Reviewed-on: https://gerrit.libreoffice.org/21394Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Oliver Specht <oliver.specht@cib.de>
-
Noel Grandin yazdı
Change-Id: I759fe8769daccea07c2157bfb5912df8ba285534
-
Noel Grandin yazdı
Change-Id: I8da6d5f60b6c65ff0da8659045da1cd7666fb1d9
-
Noel Grandin yazdı
Change-Id: Id4017bdfe18f8224d28a9f787865c7a880aeeed8
-
Tor Lillqvist yazdı
Change-Id: I664e3815bcdaff82a03309ae387154914471a80b
-
Chris Sherlock yazdı
Accessor and mutator created for full stop centered flag, removed bit field. See commit description in 8bfccd3a ("vcl: Create accessor and mutator for font scaling in FontMetric") for reasoning behind patch. Unit tests - check to ensure that can set full stop centered flag - check equality operator on FontMetric after setting full stop centered flag Change-Id: I9cacb0fbf9ea65cfebcaebdc9f0481c0a796cbcf Reviewed-on: https://gerrit.libreoffice.org/21413Reviewed-by:
Chris Sherlock <chris.sherlock79@gmail.com> Tested-by:
Chris Sherlock <chris.sherlock79@gmail.com>
-
Chris Sherlock yazdı
Change-Id: Ic2e7213254b60cf3c384dd7ab4696092dbbc5108 Reviewed-on: https://gerrit.libreoffice.org/21412Tested-by:
Jenkins <ci@libreoffice.org> Reviewed-by:
Chris Sherlock <chris.sherlock79@gmail.com>
-
Christian Lohmaier yazdı
Change-Id: I1844e4fc7fa08ee5526e7b9ff76224572cd4d089
-
Christian Lohmaier yazdı
Change-Id: I7d00e1eb3bb6d2da18ea2e6ae531aeb18e27c214
-
Chris Sherlock yazdı
This is fragile code! There are actually *two* classes that do almost precisely the same thing, they are: - ImplFontMetric, and - ImplFontMetricData They both have much in common, including their class name, and even most of their functionality. In fact, they both have common accessor functions. When I look at the code, it looks like OutputDevice is actually given an ImplFontMetricData object, which it then uses to populate an ImplFontMetric object... Basically, I'm going to merge these classes. To do so, I'm going to do the following: Step 1: Implement accessor functions for ImplFontMetric and FontMetric (then remove the friendship of this class to OutputDevice!) Step 2: Write a unit test for each accessor function in ImplFontMetric Step 3: Ensure that ImplFontMetric and ImplFontMetricData use some sort of smart pointer (probably an intrusive_ptr like I did ages ago with FontCharMap) Step 4: Merge the two classes together once their class interfaces are the same and I am satisfied they do the same thing Step 5: Find all instances of inefficient usage - for instance, I can do away with the code that copies the ImplFontMetricData attributes into an ImplFontMetric object. Change-Id: I07c1cb848774b130fa2ca60b51da53e07754dd00 Reviewed-on: https://gerrit.libreoffice.org/21399Reviewed-by:
Chris Sherlock <chris.sherlock79@gmail.com> Tested-by:
Chris Sherlock <chris.sherlock79@gmail.com>
-
Christian Lohmaier yazdı
Project: translations 3b2b4114cc4585399aa5db74ce702b0382bc01d8 update translations for 5.1.0 rc2 and force-fix errors using pocheck Change-Id: I24437fdaa13a74a85f58314771245375fec94108
-
- 12 Ock, 2016 5 kayıt (commit)
-
-
Michael Meeks yazdı
Change-Id: I276ce9a356086001c208902ba94641863c2f2fdb Reviewed-on: https://gerrit.libreoffice.org/21408Reviewed-by:
Michael Meeks <michael.meeks@collabora.com> Tested-by:
Michael Meeks <michael.meeks@collabora.com>
-
Maxim Monastirsky yazdı
It seems that images must be mentioned in some src file. Unfortunately had to copy the save icon in place of the modified icon in galaxy, to satisfy the resource compiler. Change-Id: If3fa7a8a194a0289c79fa10987138dfb35eaeca2
-
Michael Stahl yazdı
Change-Id: Ie679259deccce87949d7bf8767af707827b4134c
-
Michael Stahl yazdı
... if a document contains foreign elements or attributes. In fact since ODF 1.2 the office:version attribute is mandatory and any document that omits it is therefore invalid, while "extended conforming" documents are allowed to contain foreign elements and attributes. This mysterious check was there since CVS initial import, but without any justification. Change-Id: Ifeafad2b7af41f06356461adb7ae65dbf7bae11d
-
Michael Meeks yazdı
Initially we start with a very low priority, so that the lame bits of code that do eg. focus, and cursor rendering before the document is visible do not cause a swap, flash. Then after we've processed a REPAINT priority idle (hopefully our first paint) we adjust the swap priority to highest. Essentially a fusion of Tor's approach and mine. Change-Id: Ib9b78a18fb9359ac8c3dee1cfeb30177c08fe162 Reviewed-on: https://gerrit.libreoffice.org/21405Reviewed-by:
Tor Lillqvist <tml@collabora.com> Tested-by:
Tor Lillqvist <tml@collabora.com>
-