Age | Commit message (Collapse) | Author |
|
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
|
|
Change-Id: I8cf274902bb5fda9fa70ab2af9e399db82d85d1d
|
|
Change-Id: I17235397e490458c250165c36bec97bf1ce326d7
|
|
Change-Id: Ie6e8d4272b0b1d0d2ce93bcbc2e818a9eac1a56b
Reviewed-on: https://gerrit.libreoffice.org/9629
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
|
|
No-one is using the return values, so we can simplify the methods
Change-Id: Icc2dbfb797bcd82afcbf42ed3bdc20b0426ccba1
Reviewed-on: https://gerrit.libreoffice.org/9542
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
|
|
importExtDrawings() must be called as soon as possible,
before parser starts to parse the next shape.
Call it when graphicFrame tag is closed. This tag include
the reference to the SmartArt.
Plus fix up import tests.
Change-Id: I9e8d54c2b1afeb78a1122390dc4982d580c152ae
|
|
Change-Id: I54a51189e1c595841b8b02f3b4436da4a29f1dac
|
|
Change-Id: I546afcb626e27f6f1115715829779fc0b657548e
|
|
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Conflicts:
tools/source/fsys/urlobj.cxx
Change-Id: I59b5b95cf9b65920ec04922fdb25e4228fd22995
|
|
SmartArt import ignores some fragments during import if
drawing fragment exists, which seems to be not complete.
In this case font style is blank (white) in data (and drawing)
fragment and the real value is defined in the ignored color fragment.
So first make color fragment parsing work, then apply font
color of "node0" style on nodes of the SmartArt.
Actually, it's a workaround, because "node0" style label
is hardcoded, for a proper solution layout fragment should
be parsed too to get the right style label, but
it interferes with the drawing fragment by now.
Change-Id: I7db89176a07eee928563d42d3896fbd02190dfa8
|
|
Text list styles were copied, without proper
copy constructor and operator. It lad to mix
up list styles and so text font.
Change-Id: Iee7a6c0c1f74322fd7b80e41a262849f948e463a
|
|
Change-Id: Ie79a0810cf00217fe2b9ffd34e21aeb7b2299c0d
|
|
- so we need to be a StatusListener in framework after all
- we ware updating all menus for now, instead of just one
- this would have a hugh performance hit when there is much change to the menu
- thus we just invalidate the menu and update with all changes after 100ms once
Change-Id: I48cda968cf0ae1eae0421b3424bb3e5830817e84
|
|
Change-Id: I3d389174684cdc86ddb098629da57ebf142424c9
|
|
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
|
|
Change-Id: I2f1909f953846f0d0b6fb402b4beb373bba8b2a8
|
|
Change-Id: I8bfce109e55871d48b35300be98085f383fef26f
|
|
Change-Id: Ic830c23d8696fde323dcf67697248a84658be2bf
|
|
Change-Id: I70e41f087dbe188f8fc455150480faeae2b426ed
|
|
Change-Id: Id9e27c6cbcdc0c229a0dc2a3ad075d62121e6c5d
|
|
Change-Id: I8e36112a10cdef6250dba4b4cf75e5eba443e0b9
|
|
Change-Id: Id3bbb7a0d39a41b7106303f42d55ba4968235b63
|
|
Change-Id: I54141071396d04e7bead56da14a665b8556ba6d2
|
|
Change-Id: I692f1213c4bf42a84fae119f513e609d8874bf0c
|
|
Change-Id: Ie9fd186523d78436d5a0e8f33899aa1f462d495a
|
|
and move sidebar global resource defines up to the toplevel so its harder to
collide with them and adjust the define to indicate the next free resource
id.
and simplify the dialog down a good bit and remove intermediate classes
etc.
Change-Id: I8d6db17fcdfc86457368d7f432bd96f6f3aa182d
|
|
Change-Id: I81c94565e09e0d839d95bf4f09b029838bb37ad5
|
|
Create a rewriting plugin for finding methods that simply return
object fields, and should therefore be declared in the header,
so that the compiler can reduce method calls into a simple
fixed-offset load instruction.
Change-Id: I7a620fc54250b79681918dc31ed9a8f21118c037
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
|
|
Change-Id: If80361ac234c5079c9fcadb0a2f5fa05ea6b407b
|
|
convert places using compareToAscii that should be using equalsAscii
Change-Id: I97b4da7f6e867c3967b2f65b70d6886f83b4a4e5
|
|
Change-Id: I9e34e14d1266310458bb491259e4bf9880e8a19f
|
|
Change-Id: I4bef14453d076f11066a695bc4a948cea5cfd40b
|
|
Change-Id: I9ac3ffbecf8c9efc0b69ad4606c61dbf8fa5a0e9
|
|
Display a different string in case of 1 character for minimum length
Change-Id: Iba2fbbb7d4101718def7c79ce5354debf5d97041
Reviewed-on: https://gerrit.libreoffice.org/9631
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
This required some changes to the framework:
* Init-/DeInitVCL is no longer done per individual test in BootstrapFixture, but
once per CppunitTest invocation in a new vclbootstrapprotector (similarly to
the exisiting unobootstrapprotector). CppunitTests that need VCL now need to
declare gb_CppunitTest_use_vcl.
* For things to work properly, the UNO component context needs to be disposed
from within DeInitVCL (cf. Desktop's Application::DeInit called from
DeInitVCL). The easiest solution was to introduce an
Application::setDeInitHook (where the hook is called from DeInitVCL)
specifically for vclbootstrapprotector to call.
* PythonTests don't (yet) call DeInitVCL; they still hook into
BootstrapFixture's original test_init functionality (to call InitVCL), and do
not make use of the vclbootstrapprotector.
Change-Id: I4f3a3c75db30b58c1cd49d81c51db14902ed68b2
|
|
Change-Id: I1dbd256812cccae1e6ed0ad8bb34ce427e5e5be8
|
|
Change-Id: Ia5ed1a0c12ffc95b31cbbd43b6291218935e2296
|
|
Change-Id: I1998ee6528e9d55997029d68a2bdc71a70dd2411
|
|
Change-Id: I03aa2e78a57bda64119458eb72beade39240ab39
|
|
Change-Id: Ifa5d662a3ef723c29b4d6839f16d4b920e1c773d
|
|
Change-Id: I3c1e5c23e7be636cc93c97da0c2db00ebb1050e3
|
|
Change-Id: Ic749d5e8c22d14c0c1160c30b4813226c3962236
|
|
Change-Id: I4862481d69ac86bf082e35b28d6326444deafee8
|
|
Change-Id: I0924b0fa268c38c238226d082cf26595bba72f0c
|
|
Introduce BitmapFilter as a general bitmap filtering class, and
make scale "super" algorithem independent as BitmapScaleSuper
which uses BitmapFilter as superclass.
This is an ongoing work to make some bitmap algorithms structured
and more independent from the big bitmap class This will make them
easier to work with, test and optimize.
Change-Id: I37d29709b2af95cab2f6da21129302f5be79318b
|
|
Change-Id: Icd5845367157cc0b0c9342c6037b199c49432a76
|
|
Change-Id: Id1e127a3652d4bef280327c2a62d95c17c012656
|
|
Change-Id: I6d793317bc1caef4a95275bad263a5b2feac12e4
|
|
Change-Id: Idc54b0fae9283d795b79231214cf14aae43adca2
|
|
Change-Id: I6b18bd2df7ef190b39ceacd625bf2b62a53892fa
|