summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-17vcldemo: repair mini view, and add alpha blended page corner alike.Michael Meeks
Change-Id: I0c047a2b8940e2be76c94bf9de5423aa7e0eff8b
2014-11-17vcldemo: simulate border stretching.Michael Meeks
This causes problems with the OpenGL backend; we scale up an 8x1 image to 8x500, but our fast scaling can't yet cope with that. Change-Id: I2c91c614167dfdebb53bd03564a577feff64da0b
2014-11-16coverity#1242630 reorganize to help coverity outCaolán McNamara
Change-Id: I18124cd8d7aadbab22114fa9d38607b43862f9ea
2014-11-16coverity#982483 Dereference after null checkCaolán McNamara
Change-Id: I6098e597cb00fccff4cf4611a8ac82badf1bdf02
2014-11-16coverity#708662 Uninitialized scalar fieldCaolán McNamara
Change-Id: I6b694659077abce4ca7c67cf0298c9b882a2b964
2014-11-16coverity#1187864 Uninitialized scalar fieldCaolán McNamara
Change-Id: I80df95f70de515a0247827a89297cdfdf0399989
2014-11-16coverity#1251173 Dereference before null checkCaolán McNamara
Change-Id: I5fb5ef73a40162dea1356dde03ceaa75a65f842a
2014-11-16Remove now useless setTextEmbeddedGraphicURL()Zolnai Tamás
Since this commit: 286e2f5c6ec829bc0987b1be7016699f7ef03e5e it's not necessary to update the package URL. Change-Id: I25c829e9bc0c666838baf19cd60f19938ebb430c
2014-11-16Logically dead code related to embedded stream name in SwGrfNode\SdrGrafObjZolnai Tamás
See also: 286e2f5c6ec829bc0987b1be7016699f7ef03e5e Since embedded URL exists until the first swap in these lines are not needed anymore. Change-Id: Ie6bf8efe7808cf42f20f7b4b3f8cb927555c0ea8
2014-11-16Set back these lines, later it can be usefulZolnai Tamás
Removed in: 9dc3b49c891fb9fe45c24de4b7e1e88fe400afe0 Change-Id: Id8cee4e17d214ca0eaa5cd11dc25849e5f68851e
2014-11-16Avoid DelStreamName because it can lead to image loss.Zolnai Tamás
See also: f811e628411bda29a76ebb1f72eb107ce67d27f0 The problem is that more images can have the same stream name so we can't decide here when to remove one stream name. Better to leak in the storage as to loose images (actually we already leak here, so) Change-Id: I2c2afe87e024c2521fe22d62126b567931604101
2014-11-16Related fdo#82953: Forget package URL of image after it is loadedZolnai Tamás
It causes problems if we handle those imported images differently which are identified by a package URL, so after the first load remove this URL and handle images on the same way as inserted images. Some related bugs: * #i44367# * #i124946# * #i114361# * fdo#73270 The image in the test document has a special ID which is different from that one which is generated by LO internally so after ODF export the new generated image URL is different from the imported one. Change-Id: I4e7d3490674c5f86bec5c7c6e1c975dcafd7c265
2014-11-16Test for size based auto swap out mechanismZolnai Tamás
Change-Id: Iff0942b9b545f27dd74b73bee3f8ac785539867d
2014-11-16remove some useless SAL_WARNsMarkus Mohrhard
Change-Id: I26ae7aaab0e2d1685fd9c961aba027e1399b6911
2014-11-16use correct flag to enable ARB debug versionMarkus Mohrhard
Change-Id: I933aea4f9cb1ccd58f9a07e7d32ff28077f8bb33
2014-11-16Revert "make something visible on the screen again"Markus Mohrhard
This reverts commit 6661fdab95b981843f6d8392769f32e7377eaaeb.
2014-11-16use the OpenGLHelper version to check for OpenGL supportMarkus Mohrhard
Change-Id: Ib101d2605e5e739bb1d063fa7019e4e5930462a0
2014-11-16make something visible on the screen againMarkus Mohrhard
Why do we still use a double buffered FBC? It apparently works in the feature/opengl-vcl branch. Change-Id: I48b6879b9a9f7fec67f4da25cade46a32d8ad6fa
2014-11-16remove unnecessary whitespaceMarkus Mohrhard
Change-Id: I0dda7886718b0e3ff81a0d6d43cca2887877ea9d
2014-11-16vcl: Invert OpenGL Native Widget rendering in Y.Markus Mohrhard
Change-Id: I65a0bef7e817c82285a0e053846798f02e8d7fc8
2014-11-16fdo#56116 : Names of bookmarks should allow all characters whichBrij Mohan Lal Srivastava
are valid in HTML anchor names (missing: ':' and '.') Change-Id: I44f1d1135067103fdcc7482793371c5b95c14cec Reviewed-on: https://gerrit.libreoffice.org/12466 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2014-11-16vcl: disable OpenGL usage during build.Michael Meeks
Change-Id: I3a534578df727f2aaab6e36839f0e62e6fc8f208
2014-11-16sal_True/sal_False to true/false in calls to getWordBoundaryMatteo Casalin
Change-Id: I6116b4c2b8e03e819a430cbdcb7874af6508fb62
2014-11-16sal_Bool/sal_uInt16 to boolMatteo Casalin
Change-Id: I54d404d98cff433735ede23ddf4944a4149f559c
2014-11-16Misused sal_True/sal_False to integerMatteo Casalin
Change-Id: I3e5374145fb4a1bea1d1d900dc32380df4a408e9
2014-11-16sw: convert 'a ? sal_True : b' to 'a || b'Matteo Casalin
Change-Id: I582edaf0e9c138822135c614f973ff205d751aa0
2014-11-16sw: convert 'a ? sal_False : b' to '!a && b'Matteo Casalin
Change-Id: I999404544b1ed35a19096df58172e62bd1685e75
2014-11-16sw: convert 'a ? b : sal_True' to '!a || b'Matteo Casalin
Change-Id: I7177521a9bf9c845216e2b6c91d20df93b137987
2014-11-16sw: convert 'a ? sal_False : sal_True' to '!a'Matteo Casalin
Change-Id: I8b3d1f7af217d36a9baf62df3e62f1361b8c57bb
2014-11-16sw: convert 'a ? b : sal_False' to 'a && b'Matteo Casalin
Change-Id: I4b7829a1abe1459f2e4915159588fd3e16a14eea
2014-11-16int + sal_True/sal_False ==> bool, and reduce scope of a static variableMatteo Casalin
Change-Id: I8006aaa4474f086ce5381f59afcf7a5f15279b55
2014-11-16EndDialog(sal_True) ==> EndDialog(RET_OK)Matteo Casalin
Change-Id: I07a822a7c03a4746fd609ca6ea743b92253cf6de
2014-11-16sw: avoid 'condition ? sal_True : sal_False' expressionsMatteo Casalin
Change-Id: Idd6c9f9752659fc5da575e5a3f0ffc15ce5dbe1c
2014-11-16makeAny(sal_True/sal_False) to makeAny(true/false) in swMatteo Casalin
Change-Id: Ie368fecd39189dc6ea72737b0c695c55a2d350a9
2014-11-16SetStrmStgPtr can return bool instead of sal_True/sal_False in an intMatteo Casalin
Change-Id: I5348977de17d3f916cecabe4b5c3f7630a89667e
2014-11-16sal_True/sal_False to true/false in sw comments (also delete obsolete ones)Matteo Casalin
Change-Id: Ifb29bd3e9c5dc7671c189fd9daa010305f7a85a4
2014-11-16Let operator== return boolMatteo Casalin
Change-Id: I86d9f131ed48067984cee3fce13d48c82e7f4775
2014-11-16Remove sal_True/sal_False from code and comments in sw includesMatteo Casalin
Change-Id: Icfbbae898749196e27199802ec728417d5205bc5
2014-11-16Remove obsolete comment, there is no boolean hereMatteo Casalin
Change-Id: I55ea4ca2774433b204d2b0197e720ece4b0dadab
2014-11-16Remove code commented out since February 2011Matteo Casalin
Change-Id: I4eec581ad83c8aceea8e853d2d19275f77029a68
2014-11-16Use boolean operators instead of ?: with sal_True/sal_FalseMatteo Casalin
Change-Id: I3e2738210b2fb598e15528e262f76a3ec140ab18
2014-11-16Reformat: code after {Matteo Casalin
Change-Id: Icba402cecdc4997e95250544a887b9ed3399f197
2014-11-16sal_uInt16 to more proper integer types, make some constificationMatteo Casalin
Change-Id: I474006e128788336680e28c9f73d4a26e68541c6
2014-11-16Clarify flow by avoiding assignment in if conditionMatteo Casalin
Change-Id: Ifed65f41ab2375d702bf0c4299c65d1e3d78a7f0
2014-11-16nNum is never read: remove itMatteo Casalin
Change-Id: I615ee0ec9aca3c30018fb45f91240471b88e96eb
2014-11-16callcatcher: update unused codeCaolán McNamara
pleasing cleanup of whacky ScRawToken::sbyteOffset, etc. Change-Id: I5ad97f8dab7c5dc9d5f0286bf606b619126c22c9
2014-11-16Improve rtf import filter to handle Chinese suffixes of numbered lists.Mark Hung
Currently rtftok doesn't handle multibyte string as destination text very well. For example, RTF files created by MSO 2010 Traditional Chinese version use CP950 (aka BIG5) for unicode to ansi conversion. When a Chinsese numbered list was picked, the Chinese dot ( unicode 0x3001, big5 0xa142 ), was used by default as a list number suffix. However when it is imported , only a single B (0x42) were left. The theory of the patch is to collect both hex string and normal character with m_aHexBuffer, and convert it into OUString as late as possible. It allows prefixes and suffixes to be imported from RTF files created by MSO 2010 TC correctly. Reviewed on: https://gerrit.libreoffice.org/12435 Conflicts: sw/qa/extras/rtfimport/rtfimport.cxx Change-Id: I63062da39bf36ea27ec11e5d0eb1d1abf5018d96
2014-11-16emfplus: re-work and cleanup unit testMichael Meeks
Change-Id: I484331c4dd5feedf8587530912bb65556c1689c0
2014-11-16vcl: let the ModalDialog ctor take an OUStringMiklos Vajna
Change-Id: I839435338f4acf80c40896b6c86f7ef122f5449d
2014-11-16writerfilter: this is expected to be UTF-8Miklos Vajna
Change-Id: I7408be90f1ff552f4bb33e8a89d4b9075634e3e5