Miklos Vajna
9a7e617eb3
SwXShape: invoke SwTextBoxHelper
...
For now, only in queryInterface(), setPropertyValue() and setSize().
It's safe to always call these methods, if they are not relevant, the
method will be a NOP.
Change-Id: I6efb808f605d47f731819cd971bb66ca251cafb6
2014-05-27 09:32:42 +02:00
Miklos Vajna
72159041cb
Initial SwTextBoxHelper
...
Change-Id: I2674d72a2ba7bf49f102e09ed8435445c9687bb2
2014-05-27 09:32:42 +02:00
Chris Laplante
0a3fe4c281
Remove ASCII art and useless comments from sw module
...
Change-Id: I3ba4ac78fd4810e006b1034bbe7c28b1803895d2
Reviewed-on: https://gerrit.libreoffice.org/9494
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-05-27 01:46:44 -05:00
Noel Grandin
0f2824b117
remove more unnecessary use of OUString constructor
...
Change-Id: Iae14cb3df65295b6894fd9e05411c5698e9c8aba
2014-05-27 08:20:12 +02:00
Noel Grandin
9af0abebfd
remove unnecessary use of Reference constructor in throw
...
Convert code like this:
throw IOException("xx",
Reference< XInterface >(static_cast<OWeakObject*>(this)) );
to this:
throw IOException("xx",
static_cast<OWeakObject*>(this) );
Change-Id: Ife9f645f0f1810a8e80219126193015502c43dbb
2014-05-27 08:20:11 +02:00
Noel Grandin
9b791f9c31
remove unnecessary use of OUString constructor when throwing
...
Change-Id: I4a3f3f911dcfbf88696053215a2fb7a94678244c
2014-05-27 08:20:11 +02:00
Peter Senna Tschudin
3b24dcc8a8
Remove unnecessary semicolons
...
A simplified version of the semantic match that finds this problem is
follows: (http://coccinelle.lip6.fr/ )
// <smpl>
@r1@
statement S;
position p,p1;
@@
S@p1;@p
@script:python r2@
p << r1.p;
p1 << r1.p1;
@@
if p[0].line != p1[0].line_end:
cocci.include_match(False)
@@
position r1.p;
@@
-;@p
// </smpl>
Change-Id: Ib9708d37fbb4c6060f88d5dae3814a2d37b2091e
Reviewed-on: https://gerrit.libreoffice.org/9493
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-05-27 01:19:00 -05:00
Eike Rathke
a1dedadbf0
resolved fdo#79228 resync ScPatternAttr if changed in GetNeededSize()
...
Change-Id: Ida47df6223a20939ad5971dc00b8f3462a92dd3e
2014-05-27 01:44:03 +02:00
Chris Sherlock
467a0d624d
vcl: move clipping functions from window.cxx into clipping.cxx
...
Change-Id: I2a2c3d6283c962bba2994de04bbd869a79fc2eca
2014-05-27 08:13:03 +10:00
Chris Sherlock
7b545001a1
vcl: move functionality from window2.cxx
...
Change-Id: I68d1c7bb32df9024ea57a07d7d3b051efc08b2ed
2014-05-27 08:13:02 +10:00
Chris Sherlock
fee65f9d20
vcl: rearrange function in window.cxx
...
Change-Id: Icb7f692cdf03a77573379257b34400f38def71ec
2014-05-27 08:13:02 +10:00
Chris Sherlock
d333ca56ef
vcl: "non-pro version" actually means debug builds
...
Change-Id: I814869869bbc16a8bae94ef9c5deaeb97c13f03e
2014-05-27 08:13:01 +10:00
Chris Sherlock
495cbf4f7d
vcl: cleanup window.cxx namespace aliases
...
Change-Id: I3b8782ed7bbd782dbca52cd4bec46582a9b35271
2014-05-27 08:13:01 +10:00
Chris Sherlock
0c6cd530de
vcl: move GetSystemData() & GetSystemDataAny() back to window.cxx
...
Change-Id: I46736950563776bb4f5fefd71789010541e99e70
2014-05-27 08:13:00 +10:00
Chris Sherlock
ee1bef418a
vcl: move Window::ImplSetFrameParent() from window.cxx to stacking.cxx
...
Change-Id: I41ce1398017c7c9ff7b24464250911c63b3e2c92
2014-05-27 08:13:00 +10:00
Zolnai Tamás
37dd6ced1e
patching libgltf: stop a huge memory leak
...
It is ambiguos where we should free file buffers because they
are allocated by the caller code, but since gltfHandle is
deallocated inside libgltf and libgltf has a gltf_renderer_release
method for deallocation it seems better to free them by libgltf.
Conflicts:
external/libgltf/UnpackedTarball_libgltf.mk
Change-Id: If3d9abed0514128c13cde8c1967ea80c4d27bf59
2014-05-26 23:42:17 +02:00
Stephan Bergmann
22fd097f37
Revert "ODS load perf: accelerate CompileXML for formula by stringify and...
...
...compare."
This reverts commit 4a5d600a0ab8b851bd7565e36be3419066145908 (plus follow-up
8400f1092d2ac38ff0570837957250f45c6e156d "ODS load perf: remove left-over /
debugging getenv"). It causes crashes due to stale heap access in
CppunitTest_sc_subsequent_filters_test etc. when ScFormulaCell::CompileXML first
calls SetCellGroup, which deletes pCode, and then calls aComp.CompileTokenArray,
where aComp has earlier been instantiated on *pCode and now calls GetCodeError
on it.
Change-Id: I9c86d26604b2895e92dce38611a1f8d1f099494d
2014-05-26 23:29:56 +02:00
Fridrich Štrba
7da3ce7cdb
Allow building with more recent glm versions
...
Use glm::scale(glm::vec3(x, y, z)) instead of glm::scale(x, y, z)
Change-Id: Id307b830c0ee6cf69514e117ee1e3811a65f8bfd
2014-05-26 23:25:47 +02:00
Markus Mohrhard
25cea66f6a
remove unused variables
...
Change-Id: Ia94a501fa2571752286df0451a0a8a2b303a10c8
2014-05-26 22:50:36 +02:00
Markus Mohrhard
e69e429d8f
hardcode default camera height
...
instead of having the magic number in 5 places
Change-Id: I2550671572dcc36d9a710e56d9d9c1e99f732843
2014-05-26 22:50:35 +02:00
Markus Mohrhard
3c5392997d
switch the direction of the series labels
...
Change-Id: I718ee4782a8b1e265131f6e4e02093a59c17cb15
2014-05-26 22:50:35 +02:00
Markus Mohrhard
3bc86e1c92
use the center of the chart as camera direction
...
Change-Id: I943273817a26235afd9f17e55d2ee14c5f94c409
2014-05-26 22:50:35 +02:00
David Tardon
aa4015151a
drop trailing comma
...
Change-Id: Iaed722dc183158e1a73a6cafd91248aa76527ff3
2014-05-26 21:46:23 +02:00
Caolán McNamara
66925f65f8
Resolves: fdo#79124 options cells shift down when unit clicked
...
Change-Id: I528da752a38fcfb25aae40476891eb5052cf93b7
2014-05-26 20:41:02 +01:00
David Tardon
ce148323dc
export SYSTEM_REVENGE
...
Change-Id: I2aeb928dbd27df0f77ea0fe136dd38305ad3a004
2014-05-26 20:46:21 +02:00
David Tardon
a075584ec3
libwpd-stream does not exist anymore
...
Change-Id: Iaec196373d913f47c2b4575fcefcd41fa97fc808
2014-05-26 20:08:43 +02:00
David Tardon
48c9d7ac7c
rebase all import libs
...
Change-Id: I9e1fc613816c943f4fb1033185e34e3acf317f1d
2014-05-26 18:49:04 +02:00
Miklos Vajna
2013d184f1
coverity#1158084 Unchecked dynamic_cast
...
Change-Id: Ia800e45166b0206377fa9e138c4e444e476e3863
2014-05-26 18:01:32 +02:00
Miklos Vajna
785dd5a3a7
writerfilter: remove unused dummyannotate.xsl
...
Change-Id: Ie922a7114040ad7a1e3a96d57beb36e48bdf2e34
2014-05-26 18:01:31 +02:00
Miklos Vajna
8db20d8b4e
SwFmtFlyCnt: add doxygen comment
...
Change-Id: I9e48b471f4afbb071112f3b1f5b71ee42cfe186f
2014-05-26 18:01:31 +02:00
Caolán McNamara
2e30212c1b
coverity#704936 Unchecked dynamic_cast
...
Change-Id: I92e1f95aef32a9d0431ce3fbca0a7ab6ce5cadd0
2014-05-26 17:00:58 +01:00
Caolán McNamara
178c5d8cfd
coverity#704795 Unchecked dynamic_cast
...
Change-Id: I8526944acfb319f3e8e1e1927e94ea44eb59f5d6
2014-05-26 17:00:58 +01:00
Clarence Guo
8a93ce4c40
Resolves: #i124928# rich text portion could be converted several times...
...
each time when it is converted, the string will be set once, but in the
setString logic, the text is inserted instead of set
Repeated conversion is unnecessary, add a flag to avoid repeated conversion
(cherry picked from commit d39da40700ceab57e9f80bd9851598e1d455f121)
Conflicts:
sc/source/filter/oox/richstring.cxx
Change-Id: I3ae08d59050ce84fb6ca0f2a82acdd27e71ba52b
2014-05-26 16:28:46 +01:00
Caolán McNamara
c5abfa5fdf
coverity#704706 Unchecked dynamic_cast
...
Change-Id: I74bced4ccbe2e801fe7a3ef8e2fe0c5c39d2a4fa
2014-05-26 15:52:01 +01:00
Caolán McNamara
a7807068b6
coverity#704675 Unchecked dynamic_cast
...
Change-Id: Ib2d86a3cfaff0019bc6969b657b035cb65bbc0c3
2014-05-26 15:52:00 +01:00
Caolán McNamara
088d53701f
coverity#704674 Unchecked dynamic_cast
...
Change-Id: I4432ad08fe149e299933443fb6f1c6afc0746cf5
2014-05-26 15:52:00 +01:00
Caolán McNamara
8ce3c6f7c3
coverity#704659 Unchecked dynamic_cast
...
Change-Id: I773351290293b1e54f6e983852baf6ffd2fc3e05
2014-05-26 15:52:00 +01:00
Caolán McNamara
9c2b19c926
coverity#703930 Unchecked return value
...
Change-Id: Ifa4091eb08774309829ec9016b19e71cf9ea201a
2014-05-26 15:51:59 +01:00
Caolán McNamara
0897a5a8c5
coverity#1209405 Unchecked dynamic_cast
...
Change-Id: I5b16007b514169e2349c8c3a78d3c150c9d52d85
2014-05-26 15:51:59 +01:00
Caolán McNamara
9fbcf18e53
coverity#982751 Dereference null return value
...
Change-Id: I070317e55cf3260d1d50def0894a507cd08cc43f
2014-05-26 15:51:59 +01:00
Caolán McNamara
f556b1b614
coverity#982752 Dereference null return value
...
Change-Id: I394a13939d67b6959903e277dd78ea05cdcadfa8
2014-05-26 15:51:58 +01:00
Caolán McNamara
6342a9c49e
coverity#982754 Dereference null return value
...
Change-Id: I0d0dc196f223a988fd029cc61a8b160b2150534c
2014-05-26 15:51:58 +01:00
Caolán McNamara
dfddb56699
coverity#982757 Dereference null return value
...
Change-Id: Ie2c88a778bb25e6909138e633fe115686e2cc026
2014-05-26 15:51:58 +01:00
Caolán McNamara
88d9c87058
coverity#982758 Dereference null return value
...
Change-Id: Ia797bbd9c5587d2b55dd183a377e5b3dded96e7b
2014-05-26 15:51:57 +01:00
Caolán McNamara
b15532a03c
coverity#982761 Dereference null return value
...
Change-Id: I35e93ccf5992236d163d708089cd798e324157fb
2014-05-26 15:51:57 +01:00
Caolán McNamara
e17245c0c2
coverity#982759 Dereference null return value
...
Change-Id: I72209c52d6a8d036f0903f39b91fc62a2880448b
2014-05-26 15:51:57 +01:00
Caolán McNamara
5bdc28028c
coverity#982760 Dereference null return value
...
Change-Id: I779fa5fa418370dd6c53308943374e981f65ae29
2014-05-26 15:51:56 +01:00
Caolán McNamara
c6c135930c
coverity#1019311 Unchecked return value
...
Change-Id: I682ca0b62e6eb0d02113218de97d1440089b782c
2014-05-26 15:51:56 +01:00
Caolán McNamara
e947342b9c
coverity#1019326 Unchecked dynamic_cast
...
Change-Id: Ib3f0776048ca3dbb8a7efa4d9240f4ee9d6ac9dd
2014-05-26 15:51:56 +01:00
Caolán McNamara
9c82cb60de
coverity#1019329 Unchecked dynamic_cast
...
Change-Id: Ic340559c9ab9b74f4f932c90e08f2530c08e8d08
2014-05-26 15:51:55 +01:00