Age | Commit message (Collapse) | Author |
|
Change-Id: I387ee22ce59606b9680e1df70b8076ec474427a6
|
|
Change-Id: I58e9efdda8fac5b65e259b63a5150c44fa00feb6
|
|
Change-Id: I466b285ddc9f3ac53978acefe76c27fa212d812c
|
|
Change-Id: I3ff5ce804eb348f91f1cf46b38475c4224d68978
|
|
Change-Id: I2da961affa4bcb8349d8a038bc77986f5209a55d
|
|
Change-Id: I50e3ee8ff88f313b82ea617e354334d85fb453e0
|
|
Change-Id: I79967eea535dc4bd11e725dc854ae8a8f97a2905
Reviewed-on: https://gerrit.libreoffice.org/701
Reviewed-by: Noel Power <noel.power@suse.com>
Tested-by: Noel Power <noel.power@suse.com>
|
|
Change-Id: Ibbbb27fdf0abff997d31ae8814812f7af1ec15af
Reviewed-on: https://gerrit.libreoffice.org/704
Reviewed-by: Noel Power <noel.power@suse.com>
Tested-by: Noel Power <noel.power@suse.com>
|
|
Graphical objects imported into a text document do not seem to support
differing X and Y distances for shadows, so the distance has been
approximated by using the average of the two components.
Change-Id: Ifd0c6d73b618cb2836837348d6f48c0efc0a9dc3
Reviewed-on: https://gerrit.libreoffice.org/703
Reviewed-by: Noel Power <noel.power@suse.com>
Tested-by: Noel Power <noel.power@suse.com>
|
|
Change-Id: I0cfd6b45be268d688b7389c79c5e9ad7f48eb12d
Reviewed-on: https://gerrit.libreoffice.org/702
Reviewed-by: Noel Power <noel.power@suse.com>
Tested-by: Noel Power <noel.power@suse.com>
|
|
Change-Id: Ie11827a924a5b22d86bad24aa7f14a66b870e90c
|
|
Change-Id: Ica088822055b2fb5bbd6dabe6482b7cb6c472c48
|
|
... should hopefully un-break msvc build.
Change-Id: Iee6cc54dd488d124948d7a033811e25e2fc4044c
|
|
Change-Id: Ib2dc00c024762800fdb74ffb376d92a8583d44ad
|
|
Change-Id: I05715d4afb205aa11eb0eb98c6734db02a6be8d8
|
|
Apparently make 3.81 is confused by using private target-specific
simply-expanded variable (i.e., initialized with ':='), which in this
case leads to
/<builddir>/scp2/InstallModule_accessories.mk:30: *** multiple target patterns. Stop.
Recursively-expanded variable works fine....
Anyway, it was just an idea. It seems the time is not ripe for it yet.
Change-Id: Ic5582d809530256cad087c3c4fd10f9641d24cbd
|
|
Change-Id: I3ecd3393ab55c0aadca7432e26f84e69b6a9125c
|
|
It seems b0515ea5fa6c29faebed616ae3e0213c72d24904 and e2b7e28c12bb836fd7ab1dcbfc2460f807dd27f6
conflict, clang requires the extra call, gcc-4.7 crashes with it.
|
|
Change-Id: Ie0858cb137aeaeb18815e3085de4d4000c62218b
|
|
Change-Id: I23b77b9c8d245d84a045bdedda1584419f4fddda
|
|
This reverts commit 599a94827e2b3957db3abf758d48ff7b3977e2f2.
The special handling of PLAINLIBS_NONE breaks the build on MacOSX.
Needs further cleanup of PLAINLIBS_NONE abuse first.
Conflicts:
solenv/gbuild/gbuild.mk
Change-Id: I834b623405e7745568ee2422647746631167524b
|
|
... RepositoryExternal.mk is not optional.
Change-Id: I8678a2196a037dba1c3be350c8b989f5ba242381
|
|
I feel dirty now.
Change-Id: I1cafb0c0494d56bc9c81594c2145b2cc4a1ee389
|
|
Change-Id: I21e7e270c33f525e8883232b98cd728475c35b40
|
|
...and bitrotted code to check for checking downloaded file names that
has been broken by e24c2e106e76d9b50a923ed27f8f8fdd2db9b93a.
Change-Id: I5acda4246b46f1d5d4a54fe64a77ceae69b45a05
|
|
...is automatically done by ./download if necessary.
Change-Id: Ia51d33e6f589c9bc54570d62ab6704a751c0e5c1
|
|
Change-Id: Iab6dba9484fb5ddb8a8d4efcd46d7b9c8d1acca8
|
|
Change-Id: I4fd6d247fdc0333ccdace4ebfa947c8d02e559bc
|
|
Change-Id: Ibacf45072be2ec143e8cc2207d9ce14409a8c812
|
|
Change-Id: I0ff1f219db136f3cc763d6af61df177831b1e93f
|
|
Change-Id: I987597aef3265df08407a869d57b575778174184
|
|
If the last page is not printed for whatever reason, then
SwXTextDocument's destructor will delete a SwViewOptionAdjust_Impl,
which accesses the document's ViewShell, which has already been
deleted at that point. Add a horrible kludge to not crash for now.
Change-Id: I67fe37970d60782030b84f2badddd1e66ef3f9c6
|
|
Change-Id: I1d755086295f5a8cd7acf56204402b95fe228d2d
|
|
The % must be URI encoded, not acceptable.
Change-Id: I1274170275d1a1432fb2f933cbd3c6ee8c35d436
|
|
the useless "digraphs not supported with -Ze. Character sequence '<:'
not interpreted as alternate token for '['" occurs a lot with templates.
Change-Id: I1f7ddb7545732a5e92d1fc78a16222540cca5bb9
|
|
Change-Id: Ia832b5474204e5c5a408460eb4fb4e7697b01953
|
|
The code used static_cast blindly even if the object not necessarily
was of the assumed subclass. Crash followed. Use dynamic_cast instead
to be able to check, like the corresponding code for GTK a11y. After
that fix we then got a nice infinite loop whn an object apparently is
its own parent. Detect that and break out.
Whether accessibility for the affected parts of the GUI actually works
now for its real use cases, no idea. But anything is better than a
crash...
Change-Id: I862234e168db0bd19d185b0f1f73b733b570cac4
|
|
Change-Id: I867934b4d0589d4e395fee471e1cfab236c0540f
|
|
Change-Id: Ia2b2fd7623351377df9a0c76ad27cb6b738bc124
|
|
Change-Id: I3a7cdd6fd488af20b15a205515fc6ee593371f0a
|
|
Change-Id: I92e5f4f52ab19b607b5ed0314ee0d6c2334998c6
|
|
Change-Id: I08b5a76c68c67c3837427ad74106e170c64cdaaa
|
|
Change-Id: I6356c71e236e89c54081a852b3b55eb87b95bce8
|
|
Change-Id: Idacea435ecf403770083f5c1e75c3ad1992ec14a
|
|
It does not work with make 3.82 which prefers pattern rules
with longest match, so wrong rules are chosen in workdir.
This reverts commit bc234b4e1103cf8f79a7526ad80dcd9d0b78b89b.
|
|
Change-Id: I8a008b48dfd4b424fa95f8919fb52208ee45e6b6
|
|
Change-Id: I7074c377b6a8f8250adcae73178882fc9e68c696
|
|
Change-Id: I37af685c39606f9bee173d81f6a4d5f0dd63af7e
|
|
Change-Id: Id56efb715c9bd27b389b0fa9f38bcd0fe12ac9d4
|
|
Also makes more visible that gb_Library_PLAINLIBS_NONE are special.
Change-Id: I58a667d75a0d964c8f02e36a4645402417a1a621
|