Age | Commit message (Collapse) | Author |
|
Change-Id: Ie2b9aca5c3db46b43c53f72699fe828b28daeaa1
|
|
Change-Id: Id99ba394b898b7da0057d4a145ce8dce46122782
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
|
|
Change-Id: I009dd167d399d817689877a5e7e22dc4ab60ec61
|
|
Change-Id: Ic27986d8d45f61facedf2400b77334aaf1da7c1e
|
|
Change-Id: I5186904b9703d6c9c49ca4c3b4a62f83423b1ae1
|
|
Change-Id: I1793a58fa107b190f8412bbc3376009f3b85c6b0
|
|
redefined GraphicAttr to be expressed as primitives if needed, enhanced render
and export quality if graphic is modified using graphic attributes
(cherry picked from commit 1e79e8da3f8042f7d7bd94b2c9f03cff7545b05c)
Conflicts:
basegfx/inc/basegfx/color/bcolor.hxx
basegfx/inc/basegfx/color/bcolormodifier.hxx
basegfx/source/color/bcolormodifier.cxx
drawinglayer/inc/drawinglayer/primitive2d/graphicprimitivehelper2d.hxx
drawinglayer/inc/drawinglayer/primitive2d/modifiedcolorprimitive2d.hxx
drawinglayer/inc/drawinglayer/primitive3d/modifiedcolorprimitive3d.hxx
drawinglayer/source/primitive2d/graphicprimitive2d.cxx
drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx
drawinglayer/source/primitive2d/modifiedcolorprimitive2d.cxx
drawinglayer/source/primitive3d/modifiedcolorprimitive3d.cxx
Change-Id: Ief2172efc9cc1b9838de48ec7f536c05573c7dc3
|
|
convert various module-local functions
Change-Id: I89f3eb40b107e2617958e474ffe86bd73e01cf33
|
|
convert for loops using xub_StrLen to use sal_Int32
Change-Id: I5f635ca078966fefe938dbc7e8dea7c8d0d0b554
|
|
Convert code like:
xub_StrLen nLen = aStr.getLength();
into
sal_Int32 nLen = aStr.getLength();
Change-Id: Ib0af6b747068257478918fd1cc93e4925f32ac47
|
|
and inherits from Edit which reuses that same bit for password
Change-Id: I8add146fdbc1b3402b5409f01f75c620da25a313
Reviewed-on: https://gerrit.libreoffice.org/6579
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I10f3dbd9513052b3bbe30ddc6523cd231f26ded3
|
|
This reverts commit 9a4a84df5406cdcde1f4d23a1cea2b109998f35b
This was false, because WINVER is currently set to 0x0500 in
solenv/gbuild/platform/windows.mk. We need a runtime check like it's
realised already and have to define the missing struct if necessary.
Change-Id: I267dff1c8137657e47bdc4ad5ae81d511d7b9d5f
|
|
and inherits from Edit which reuses that same bit for password
Change-Id: Ice27caecfd82e2dd7b000474f37b601fd4628766
|
|
Convert code like:
if( aStr == OUString("xxxx") )
to this:
if( aStr == "xxxx" )
Change-Id: I8d201f048477731eff590fb988259ef0935c080c
|
|
Change code like this:
aStr = OUString("xxxx");
into this:
aStr = "xxxx";
Change-Id: I31cb92e21658d57bb9e14b65c179536eae8096f6
|
|
This also means that this code now gets bounds checked in debug builds.
Change-Id: Id777f85eaee6a737bbcb84625e6e110abe0e0f27
|
|
Change-Id: I90ca2f5dd8d2678dff74ae5599e640c9a69aee33
|
|
Change-Id: Ic83af0549a88b8debfdf945853fa42e1d28e5869
|
|
Now using gtk_widget_size_request() to get the native size.
I reverted the earlier change (border_width etc. ignored)
Change-Id: I0d89a2df5186bd27cbb77c8b0f2cc7b1fb247005
Reviewed-on: https://gerrit.libreoffice.org/6478
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Conflicts:
vcl/inc/sft.hxx
Change-Id: I1b744f14b6524e4d5913775427280e68c4ee07fc
Reviewed-on: https://gerrit.libreoffice.org/6491
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I31cd13e6b11b73166e7a7f351c5eb3ea8038a4fc
|
|
Change-Id: I5f1b9fd266d7920a947d3dfb6bcd584e3cc30b53
|
|
It did not do anything.
How to handle dialog attempts from random places in the code on
non-desktop needs to be re-done properly.
Change-Id: I854a12faba3f98c61f637b465789976493326d43
|
|
Change-Id: I7c3ae0afd6740df326a5c74826e7f204e9df2219
|
|
Change-Id: I45b072e5d6a216f0b82f7a0b3a4554ef4cc3570f
|
|
Thorsten thought it might have been used for to the handling of the "Original
Size" functionality originally. That seems slightly broken currently in some
use cases, and this change doesn't make it any worse. (To see the brokenness,
play with resizing an image, reloading the document, and using "Original
Size". With the right sequence of actions, LO seems to think that the
"original size" is very small (1x1 pixel perhaps).)
Change-Id: I4e0852d2b367def5bc40baf95aac273d59731eec
|
|
Change-Id: Ib41c9521a8b8e5b8ebc170f9b7e45379a51f1bd5
|
|
This requires at least Windows 7 / Windows Server 2008.
Otherwise it won't compile under WinXP.
http://msdn.microsoft.com/en-us/library/windows/desktop/dd391556
Change-Id: I984e8bc1e9dc80a9c8bf236be9af3cffabcabd05
|
|
Change-Id: I94627e5b4efda92ac80a618e5aa4b0b33340f4ef
|
|
This is both an optimisation and a cleanup.
This converts code like
aStr.indexOf("XX") == 0
to
aStr.startsWith("XX")
and converts code like
aStr.lastIndexOf("XXX") == aStr.getLength() - 3
to
aStr.endsWith("XXX")
Note that in general
aStr.lastIndexOf("X") == aStr.getLength() - 1
converts to
aStr.isEmpty() || aStr.endsWith("X")
so I used the surrounding context to determine if aStr could be empty
when modifying the code.
Change-Id: I22cb8ca7c2a4d0288b001f72adb27fd63af87669
|
|
This is pre Windows 2000. Drop it.
Change-Id: I3599a0d2ff7cb967c534eaa0cd4f070817fe3240
|
|
This check is no longer necessary as we require at least Windows XP,
which is 0x0501. It was implemented for ImmGetProperty().
Came in with 011bcd1ea1e8ce10f6b9946d8d44d05a59387b8c
Change-Id: If94d6e99e7f474d931546326bd6c96f2cfa4cfcd
|
|
It seems that some Indic fonts assign 'mark' glyph class to combining
spacing marks (spacing not non spacing) so my reliance on the glyph
class to set the IS_DIACRITIC flags broke those fonts. This is a bandaid
to get around the issue, plus some long rant! (at this rate, I'll be
writing "The VCL haters handbook" pretty soon).
Change-Id: I3ff892acf746d50182573f94e7e8c3c6f9464ae0
|
|
Change-Id: I30ab912b96fffa181b5cf062ecdf80faec615ec3
|
|
Delivery of image theme zip can fail when a unit test runs concurrently
and has the zip file opened on WNT. Horrible hack to have vcl depend on
the image themes should prevent that.
Change-Id: I4b65dbb6cae8738d52153eba3397b17e94cdc7c9
|
|
If a menu won't fit in the desired location the default mode is to place it
somewhere it will fit. e.g. above, left, right. For some cases, e.g. menubars,
it's desirable to limit the options to above/below and force the menu to scroll
if it won't fit
Change-Id: I1998a842d25752389ec9032e54673408d1ed6cb5
|
|
Change-Id: I589ddfee1f69f5e8ba74dcc6abf9afb97cdf367d
Reviewed-on: https://gerrit.libreoffice.org/6444
Reviewed-by: Adolfo Jayme Barrientos <fito@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I564659c8b05f08d497b778144a04464ba8f9ddd6
|
|
Change-Id: Ia9b9e43a25c1d86e3f8c6d9a29d54dd94625bb0d
|
|
Change-Id: Ifa0770eb24df4ae4c7c058b980545a9094bbdf50
Reviewed-on: https://gerrit.libreoffice.org/6461
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: I2bc45e4ba63f5faaee7389bcd9d7b3f563503186
|
|
Change-Id: I3858c2152267474afab8e5a72b9f5da0ac623012
|
|
|
|
|
|
g_simple_action_group_add_entries was deprecated in GLib 2.38
Change-Id: I727e8aeeecd66b8f071d43ff56d9dc94cda1b9e0
|
|
Change-Id: I3fd1ac8aaea2e79efcd9e2d4b12347a387d0d28b
|
|
Change-Id: I78023074a31cf1cc3703a8fbeeb7f6a44a5c70d3
|
|
Change-Id: I5a6eb741c0669d2f1e5bfbe302066be863ec0249
|
|
Change-Id: I5100d44ceea79c4b47d2dd5bda5066c5003313a1
|