- 15 Eyl, 2014 5 kayıt (commit)
-
-
Stephan Bergmann yazdı
...and thus should simply derive from WeakImplHelper1 instead of InheritedHelperInterfaceImpl1? Change-Id: I0cb023a905e93bf9c223676c964f039ac7eee7e0
-
Julien Nabet yazdı
Change-Id: I440dc3e30ee139d6cb261e1308e48e9b63b52bc8 Reviewed-on: https://gerrit.libreoffice.org/11434Reviewed-by:
Thomas Arnhold <thomas@arnhold.org> Tested-by:
Thomas Arnhold <thomas@arnhold.org>
-
rbuj yazdı
Change-Id: I914985aa73653e0fb08200ddd06ad5b914087e3a Reviewed-on: https://gerrit.libreoffice.org/11446Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
rbuj yazdı
Change-Id: I589436be7d28b50b0b900a314b300d382eac5eb8 Reviewed-on: https://gerrit.libreoffice.org/11445Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
rbuj yazdı
Change-Id: I7c47e3a8657ec2368543088743879085878d78fb Reviewed-on: https://gerrit.libreoffice.org/11444Reviewed-by:
Noel Grandin <noelgrandin@gmail.com> Tested-by:
Noel Grandin <noelgrandin@gmail.com>
-
- 14 Eyl, 2014 19 kayıt (commit)
-
-
Luboš Luňák yazdı
Here it also keep track of the connection, as it needs to be explicitly disconnected in one place. Change-Id: Id3e2882106ae55c2d880898956a36f84d3ce70ef
-
Luboš Luňák yazdı
Note that ImplListBox::userDrawSignal is connected to ImplListBoxWindow::userDrawSignal to forward the signal, just like the Link was previously forwarded. Change-Id: Ic8fc6f51e309bc34fb4e39c13745302649991d0a
-
Luboš Luňák yazdı
Change-Id: I18680e47688da02c9e211bf7f8d861622735e749
-
Luboš Luňák yazdı
Change-Id: I003f4f951d3b4007bc11ac957ac88bf92d87aab3
-
Luboš Luňák yazdı
https://svn.boost.org/trac/boost/ticket/8260 Change-Id: I06b4d45b91c99d1152fa79e419346c0668573bca
-
Miklos Vajna yazdı
The integers were a leftover from doctok's Kul enumeration. Change-Id: I71ee4add743af9ae5b5dee877536c09ca48b854c
-
Luboš Luňák yazdı
Change-Id: Ifec915d5b2c9e5f7558e7850eb44e44300c9b374
-
Caolán McNamara yazdı
regression from commit bf28399d Date: Fri Feb 7 15:54:45 2014 +0100 auto_ptr -> heap_ptr Change-Id: Ib54c708cbdcb97a7489df4a1b3a7e9367f81ff6b
-
Caolán McNamara yazdı
Regression from 63ea2d46 Date: Wed Jul 2 19:10:24 2014 +0200 replace while with for Change-Id: I151e447446b9793cff6abe7633eca4d11059a390
-
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 16 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>
-