- 24 Ock, 2013 9 kayıt (commit)
-
-
Andras Timar yazdı
Change-Id: I69ff4f69e3ef93ed36cdcda9c54513624e8c98d0
-
Joren De Cuyper yazdı
Change-Id: I8cf518a18e4846f9e687d05c7f7c0eb774abba6f Reviewed-on: https://gerrit.libreoffice.org/1751Reviewed-by:
Radek Doulík <rodo@novell.com> Tested-by:
Radek Doulík <rodo@novell.com>
-
Winfried Donkers yazdı
Change-Id: Icf6aa698e69a2271cf68f420ceaec4aaffe94ad0 Reviewed-on: https://gerrit.libreoffice.org/1671Reviewed-by:
Noel Power <noel.power@suse.com> Tested-by:
Noel Power <noel.power@suse.com>
-
Stephan Bergmann yazdı
Change-Id: I6798f7f855ed65a7628b4a178497205bce2e6060
-
Stephan Bergmann yazdı
Change-Id: Ib6a4e79d539f79911840acf783b5b62fab27acfe
-
Kohei Yoshida yazdı
Without this, pasting a chart object from one Calc doc to another may occasionally incorrectly switch to range references *if* the destination document contains the "right" set of sheet names. With this fix, pasted chart objects always switch to internal cached data source when pasting to another document, while retaining range references when pasting within the same document. Change-Id: If1dbc854c5faae62f06ece155fad470b229ca0c7
-
Markus Mohrhard yazdı
Change-Id: I2ac599fa2897dc4fe3256b50300cb467c647e320
-
Markus Mohrhard yazdı
Change-Id: I579694780b64e532b0e61017783bc4e72f8d2936
-
Peter Foley yazdı
Change-Id: Idc81352de3d2a9550457e8f56fd819c0296fd2a8
-
- 23 Ock, 2013 31 kayıt (commit)
-
-
Markus Mohrhard yazdı
Change-Id: I698f60daf4e591b57d8d99c130d2e524dc10c306
-
Caolán McNamara yazdı
Change-Id: I1d112948f6e0595329f44e34d8d1cba37ae8fd6e
-
Caolán McNamara yazdı
Project: help a7662a33f70582067dd9dc303ec7228a28f36a12
-
Andras Timar yazdı
Project: dictionaries 0aeb113339d2bdeb0cb7fe3a9a2b1ae1c3fd9367
-
Michael Stahl yazdı
... otherwise the first page will not be updated on page style changes. (uncovered by commit c41675a7, which should have fixed this too) Change-Id: I04f75b2a8e8929767fb36dd7085c3a273f07c93a
-
Stephan Bergmann yazdı
...where it could default to something like CP 1252 instead on Windows, while keeping backwards compatibility for now with running under Python 2 (where things apparently worked well with the original code). Change-Id: I0ddd06771a36e1cd2cc2ce78abd8bd667db7778f
-
Caolán McNamara yazdı
Change-Id: If7983092a3842bf1841d8a19dc1776668c17d3f3
-
Caolán McNamara yazdı
Project: help f96ff336fd0c754564e93da04d6531721ab745b5
-
Noel Power yazdı
Seems ScDrawLayer::GetObjDataTab was used mistakenly thinking that only an anchor for that tab would be returned ( but actually whatever anchor is returned gets the tab set ) Change-Id: I5d240f80a9974f6e4032875ed00350c94621bde7
-
Caolán McNamara yazdı
Project: help 2d030d074953cf178778c4afa2338915d4019e91
-
Caolán McNamara yazdı
Change-Id: I81bc6e119019f9bd4f90ae4ed77fbb65455260cd
-
Lionel Elie Mamane yazdı
Change-Id: I32e514fbfbd323b688b25b9e2165d0c76e3c4db5
-
Lionel Elie Mamane yazdı
- don't remove parentheses around subqueries (without the parentheses, it is not valid SQL) * when saving a Field (name value) typed by the user interactively * when parsing SQL and constructing the initial Query Design view - automatically add the necessary parentheses when a SELECT statement is entered as column name Also: In code saving a Field (name value) typed by the user interactively, factorise some common code Assorted minor fixes (typos in comments, etc) Change-Id: I3843258323c903cba23238b0730ec4eb5875f792
-
Lionel Elie Mamane yazdı
Change-Id: Ib0c7151b311029318c213abb86e6541e3b27d040
-
Lionel Elie Mamane yazdı
Change-Id: I8a67235e5110618f45fe9d9467bbb7ff90c7c712
-
Lionel Elie Mamane yazdı
Change-Id: I2b408a23162b1200bbcd530be7acb42435388b04
-
Lionel Elie Mamane yazdı
Change-Id: I4e56da8820d5c92d3b6e2ff2c749bdc0cef46d73
-
Abdulelah Alarifi yazdı
Change-Id: I9cc578ff3355e720181e68f252d678696ecfeed1 Reviewed-on: https://gerrit.libreoffice.org/1765Tested-by:
Caolán McNamara <caolanm@redhat.com> Reviewed-by:
Caolán McNamara <caolanm@redhat.com>
-
Stephan Bergmann yazdı
...to 75e32e15 "default to --without-help and --without-myspell-dicts." Change-Id: I018b8033f3a9d485b5cf5a9392719748426de53b
-
Andras Timar yazdı
Change-Id: Id54b9a480b345b52f86c53f6a0a939c18807ec05
-
Caolán McNamara yazdı
...in X11SalGraphics::GetGlyphBoundRect In MultiSalLayout::GetBoundRect we loop through each fallback font and union each level's GetBoundRect to get the result, which seems reasonable, except that for each level that means a call to SalLayout::GetBoundRect which calls X11SalGraphics::GetGlyphBoundRect. Those sublevel SalLayouts don't know that they are sublevels so they never set the level bits on their glyphs. Which results in X11SalGraphics::GetGlyphBoundRect always searching for that glyph in the level 0 font, so there's a mismatch between the font the SalLayout's are created to use and the font that gets used. Now, SalLayout::GetBoundRect is a fairly simple thing, it just calls GetNextGlyphs 1 by 1 and X11SalGraphics::GetGlyphBoundRect on the result of that. So I *think* that if we remove the specialized MultiSalLayout::GetBoundRect in favour of the default implementation, then because MultiSalLayout::GetNextGlyphs is specialized to do-the-right-thing and set up the glyph ids correctly, then we bubble the ids down to X11SalGraphics::GetGlyphBoundRect correctly to get it to use the right font and we get the correct bounding size. defb4d60a2d22fd36a0ff3f077faa6a0932b45a4 defb4d60a2d22fd36a0ff3f077faa6a0932b45a4 Change-Id: Idefb4d60a2d22fd36a0ff3f077faa6a0932b45a4
-
Stephan Bergmann yazdı
Change-Id: I624f35026b8ee847d70d429c61cd93d6a603d8b0
-
Word2007 writes nil too, and doesn't properly import none. Change-Id: I32147bbf8c94f8dcf079bcecad48ffaaf3aa1968
-
Takeshi Abe yazdı
Change-Id: I27471e2331ff4813850fc5d3ca398ae6e1d86758
-
Andras Timar yazdı
Project: dictionaries a392489288adb820663a793c38d144fea53033c2
-
Andras Timar yazdı
Project: dictionaries aeb40bcecda8f2e705db5035376a6047eb098825
-
Aurimas Fišeras yazdı
Project: dictionaries 143afd75257fd4c4b44f09ee402ec8caa09011ba Update Lithuanian dictionary (1.3, 2013-01-20) Change-Id: I25940b19e77e7fc6165f9845238830d16ed87bf5 Reviewed-on: https://gerrit.libreoffice.org/1815Reviewed-by:
Andras Timar <atimar@suse.com> Tested-by:
Andras Timar <atimar@suse.com>
-
Andras Timar yazdı
Change-Id: Idc06412b8be705ba0cd5695257fd961864e2ad6a
-
Mathias Michel yazdı
And did it also for GetMsiProp() and *MsiProperty() Reworked some conditions related to that. Change-Id: I1cd082361126db3d9aced3a878b19e7052514864 Reviewed-on: https://gerrit.libreoffice.org/1816Reviewed-by:
Andras Timar <atimar@suse.com> Tested-by:
Andras Timar <atimar@suse.com>
-
Thorsten Behrens yazdı
Lots of code relies on the fact that the two bitmaps inside a BitmapEx actually have the same size. Enforce that convention during import. Change-Id: I436ccc33b06c627cd6347747d22c24bfaf7ca932
-
Abdulaziz A Alayed yazdı
Change-Id: Ifea57dec77c5b23771684a1e46267f8431478075 Reviewed-on: https://gerrit.libreoffice.org/1806Reviewed-by:
Caolán McNamara <caolanm@redhat.com> Tested-by:
Caolán McNamara <caolanm@redhat.com>
-