- 14 Eyl, 2014 10 kayıt (commit)
-
-
Maxim Monastirsky yazdı
Make this mode permanent, and add also zoom out/pan functionality. Hold Ctrl for zoom out, Shift for pan. Change-Id: I5bd8adfcc4d403c35b33185e5894a2b020d604d0
-
Maxim Monastirsky yazdı
That's what apparently people expect from this button to do, similar to the nearby zoom out button. This is also consistent with a similar button in math, and in print preview (both are using the same icon and same tooltip). The zoom mode that was assigned to this button until now, moved to a dedicated button (thus could be further improved to host other functionality as well - see the next commit). Change-Id: Ie640c72cf1aab1e3fc8a14211702a33a86bb3672
-
David Tardon yazdı
This makes the desired changes in workdir/SrsPartMergeTarget/starmath/source/symbol.src. The only other merged file that is changed is workdir/SrsPartMergeTarget/sw/source/ui/misc/numberingtypelistbox.src, with changes like < "1, 2, 3, ..." ; 4/*SVX_NUM_ARABIC - < "a, b, c, ..." ; 0/*SVX_NUM_CHARS_UPPER_LETTER */; > ; + < "A, B, C, ..." ; 0/*SVX_NUM_CHARS_UPPER_LETTER */; > ; < "a, b, c, ..." ; 1/*SVX_NUM_CHARS_LOWER_LETTER */; > ; This looks okay to me too :-) Change-Id: I729075209027ed1f3fec311c05b631c0f681708b
-
Matúš Kukan yazdı
Change-Id: I6659b6e1be865546f380a28e4803fbe593de0803
-
Matúš Kukan yazdı
Change-Id: Ie9b6c5ff866269e5d7a26d025cb1c0d884ff1134
-
Matúš Kukan yazdı
Do not export LinePropertiesContext class as visible. And move GraphicProperties to its own header. Change-Id: I047c181e9f2adc7e59885f59663ea56c7eb898ed
-
Miklos Vajna yazdı
Change-Id: I43df705a6cf5371ee495336d9dbe2b87020cf0e0
-
rbuj yazdı
Change-Id: I949aa58416dbd80d87c9455009258f7bd2fd8520 Reviewed-on: https://gerrit.libreoffice.org/11439Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
Ryan McCoskrie yazdı
Change-Id: I5bd14f81c5eefc2227662605d6ccb107254c53df Reviewed-on: https://gerrit.libreoffice.org/11440Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
rbuj yazdı
In JDK 1.3, StringBuffer makes the String concatenations faster. public String concat(String s1, String s2) { StringBuffer sb = new StringBuffer(); sb.append(s1); sb.append(s2); return sb.toString(); } JDK 1.5 comes with StringBuilder (which is faster than StringBuffer) and the method: public String concat(String s1, String s2) { return s1 + s2; } is translated to: public String concat(String s1, String s2) { return new StringBuilder().append(s1).append(s2).toString(); } Change-Id: I2924fcdf23d7ffbb567d9e924d02edcab4d21be6 NOTE: StringBuffer is synchronized, StringBuilder is not. Reviewed-on: https://gerrit.libreoffice.org/11436Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
- 13 Eyl, 2014 27 kayıt (commit)
-
-
rbuj yazdı
http://docs.oracle.com/javase/1.5.0/docs/api/java/net/URLEncoder.html Change-Id: I9d9b40ecf0d76618376975c52e5d9f27ec4bae8e Reviewed-on: https://gerrit.libreoffice.org/11438Reviewed-by:
Thomas Arnhold <thomas@arnhold.org> Tested-by:
Thomas Arnhold <thomas@arnhold.org>
-
rbuj yazdı
Change-Id: I1c157ebbfa0c307fd92c0a2d26e7d530be8ea9da Reviewed-on: https://gerrit.libreoffice.org/11437Reviewed-by:
Thomas Arnhold <thomas@arnhold.org> Tested-by:
Thomas Arnhold <thomas@arnhold.org>
-
Olivier Hallot yazdı
Project: help eb0f507b5eb59c6b9a86d8f65e23fb9f0a3e790e Fix FDO#80441 Help pages for WEBSERVICES function Also FILTERXML. Many thanks to Leif Lodahl for the help Change-Id: I241610db69eab0cc2490492520288bc6b154c21b Reviewed-on: https://gerrit.libreoffice.org/11435Reviewed-by:
Thomas Arnhold <thomas@arnhold.org> Tested-by:
Thomas Arnhold <thomas@arnhold.org>
-
Miklos Vajna yazdı
Change-Id: I230feea7ebf3138e6b1862401373216a25c34309
-
Norbert Thiebaud yazdı
Change-Id: Ie2d476780a48b5815961598e214343d5def962c1
-
Norbert Thiebaud yazdı
Change-Id: I1185539ecee1b9ede161bffcea9c13af0ade9510
-
Norbert Thiebaud yazdı
Change-Id: I311d6b359007b1d5799673e3d7733bdf2177df88
-
Caolán McNamara yazdı
Change-Id: Ifb9e226b848bfcba593bc54558680738158adc36
-
Caolán McNamara yazdı
Change-Id: Iac532477802588333560497767a613bb0a55effe
-
Miklos Vajna yazdı
Change-Id: Ib510ce39e83f87c8a9c7a4f5dce4b29b012ce732
-
Peter Foley yazdı
Change-Id: I9ebe739223f396f16f326c7fbad09c762030f796 Reviewed-on: https://gerrit.libreoffice.org/11406Reviewed-by:
David Tardon <dtardon@redhat.com> Tested-by:
David Tardon <dtardon@redhat.com>
-
Peter Foley yazdı
Change-Id: Ic68f3ae19ae55d507b80f4685966357d55cb47b9 Reviewed-on: https://gerrit.libreoffice.org/11407Reviewed-by:
David Tardon <dtardon@redhat.com> Tested-by:
David Tardon <dtardon@redhat.com>
-
rbuj yazdı
Change-Id: Ib0a69ac4714cd694ccd6a9bea87e32c1aadb0428 Reviewed-on: https://gerrit.libreoffice.org/11433Reviewed-by:
David Tardon <dtardon@redhat.com> Tested-by:
David Tardon <dtardon@redhat.com>
-
rbuj yazdı
Change-Id: Ic738dbbee4ce972ebf7efcfda33ccbb3f3ac48ff Reviewed-on: https://gerrit.libreoffice.org/11432Reviewed-by:
David Tardon <dtardon@redhat.com> Tested-by:
David Tardon <dtardon@redhat.com>
-
rbuj yazdı
Change-Id: Icff6a5d19aaf7ac7ebb0cd54140bd388cba0f24d Reviewed-on: https://gerrit.libreoffice.org/11431Reviewed-by:
David Tardon <dtardon@redhat.com> Tested-by:
David Tardon <dtardon@redhat.com>
-
rbuj yazdı
Change-Id: Iabd3514f3c64ff851463cb9b2c1c425164285eb5 Reviewed-on: https://gerrit.libreoffice.org/11430Reviewed-by:
David Tardon <dtardon@redhat.com> Tested-by:
David Tardon <dtardon@redhat.com>
-
rbuj yazdı
Change-Id: Ib5e59a8c153e7d788c14153fa3b94c8b2d0a068c Reviewed-on: https://gerrit.libreoffice.org/11292Reviewed-by:
David Tardon <dtardon@redhat.com> Tested-by:
David Tardon <dtardon@redhat.com>
-
Jean-Pierre Ledure yazdı
setValue gives erroneously an error message when argument is Null and field is nullable https://forum.openoffice.org/en/forum/viewtopic.php?f=47&t=61447&sid=48e231a12084933d9da1b47e50b186ea#p323714 Change-Id: Ic96e50f4c752f5fa38e8f40e80692f166fd88e4a
-
Caolán McNamara yazdı
Seems to be that the default mac fonts are way messy than the MS or Linux ones tend to me Change-Id: Ia0ed6f9fcc650bea9466c4127f6faf7adba72d44
-
Jean-Pierre Ledure yazdı
The invocation of CloseConnection has next effects: All the recordsets related to a database linked to the current document are closed. The database object(s) is(are) released. Change-Id: I845b27acb8469c4dea0dc3bc20b912ab123d06cf
-
Chris Sherlock yazdı
Change-Id: I851c414aa9e95c4d2c3ddb44deb5835656d16f87
-
Caolán McNamara yazdı
Change-Id: I5ae275532ccb3e77acd2422f1d6b90078fe95a9e
-
Caolán McNamara yazdı
Change-Id: Idf2431927d8f501f87301d01a7bb884f1445125f
-
Caolán McNamara yazdı
Change-Id: I3f3f14b3b24abbbdb40f8eb6655d42b12d920999
-
Chris Sherlock yazdı
Change-Id: Ifb52f18f34f510b60292fc80e3e47b2ff45b841c
-
Chris Sherlock yazdı
Change-Id: I89e60f743c5af8b5fa0f3df779f240945af40c07
-
Chris Sherlock yazdı
Change-Id: I53ad4992c6901e3dceae453699c2da785feb21a5
-
- 12 Eyl, 2014 3 kayıt (commit)
-
-
Jan-Marek Glogowski yazdı
DoSaveCompleted updates the SwViewShell and recent file lists after the document was saved via DoSaveAs. So we can simply drop the call and delete the SfxMedium to save a copy. Change-Id: I04a0710949ca60e1ff4cab24c6b504deb130db63 Reviewed-on: https://gerrit.libreoffice.org/10983Reviewed-by:
Michael Stahl <mstahl@redhat.com> Tested-by:
Michael Stahl <mstahl@redhat.com>
-
Michael Meeks yazdı
Previous this was experimental only. Change-Id: Ie5923e5342e7bace7492d561ce80ac86f69ec06c
-
Jan-Marek Glogowski yazdı
This simplifies the handling of CreateMonitor and PrintMonitor in the combined mail merge function. Change-Id: Iacf933ec1a6017949b29b3d5f62d5f55c4691053 Reviewed-on: https://gerrit.libreoffice.org/10984Reviewed-by:
Michael Stahl <mstahl@redhat.com> Tested-by:
Michael Stahl <mstahl@redhat.com>
-