- 05 Şub, 2013 40 kayıt (commit)
-
-
Kohei Yoshida yazdı
And disable user interaction during type detection, since that would cause the test to fail. With this change, 'make check' works once again. Change-Id: I2f45a2e962e45ee64f7984e794cff814fbfe6dab
-
Kohei Yoshida yazdı
Change-Id: Ifdc1716ed033f01bc298243c1e2dafd5736fac68
-
Kohei Yoshida yazdı
Change-Id: I417d76f7f7ab1b14a449ec0ee86bfd69effa68df
-
Joren De Cuyper yazdı
Change-Id: Ic24e0453786d64b8c082c4d7ca4a22b853827d0e Reviewed-on: https://gerrit.libreoffice.org/1955Reviewed-by:
Michael Stahl <mstahl@redhat.com> Tested-by:
Michael Stahl <mstahl@redhat.com>
-
Markus Mohrhard yazdı
Change-Id: I2660d79b14455ffed62c755b8d83e70c2d7a99f2
-
Miklos Vajna yazdı
Change-Id: Ia655743710778ea7d48a9b2221f22f55a4ccce32
-
Stephan Bergmann yazdı
Change-Id: I9cc1fdfa7acad6c233b68eb23dea39c58d4cecaa
-
Stephan Bergmann yazdı
Change-Id: Icb083795c9c00a9ca33c2a901b4183b81c98918c
-
Stephan Bergmann yazdı
Change-Id: I48bd329e1a29ce9cbf9840bf5e3cb48a92cb8073
-
Tor Lillqvist yazdı
Change-Id: I79db3d1b611315aab8a6c3a28d259a589dfa41d7
-
Tor Lillqvist yazdı
Change-Id: I09ba3b2c7502b56241aa957b05c443270c1cd56e
-
Kohei Yoshida yazdı
We still need to leave the MS Excel 4.0 filter name there as it's used for Excel 1.0/2.0/3.0 file formats. In the future we might move these to ScExcelBiffDetect as well... Change-Id: I8422e7470fbb0a14c219b7f67e3dfd4a34131eba
-
Kohei Yoshida yazdı
Change-Id: Ic0f5c585386f602bd51e006770b30cbb190a531e
-
Caolán McNamara yazdı
Project: help a35db526f704f87c082cba926ccb3559bb2d561d
-
Caolán McNamara yazdı
Change-Id: I3838de932dea44accd3ec5a8eca3706f65058661
-
Andras Timar yazdı
Change-Id: If93d8cb9d9d5ee4f9bc253a3c9ea6a063629dcb4
-
Radu Ioan yazdı
- changed osl_trace with sal_info Change-Id: I6504abf50f6193db52d101ec856bcaf1ee2a982c
-
Lionel Elie Mamane yazdı
Change-Id: I103ca7d72e6bae6c20605719451579dd156504ce
-
Takeshi Abe yazdı
Change-Id: Ib7951202399816a8bdb5806751857c6c0cafceff
-
Takeshi Abe yazdı
Change-Id: Ie3901ac8dc2cb46f6d06cbc2c80760570a474bf9
-
David Ostrovsky yazdı
Also switch BOOLEAN constructor from sal_Bool to bool. old/new signed/unsigned storage situation: ------------------------------------------------------- SQL type | signed | unsigned old | unsigned new ------------------------------------------------------- TINYINT | sal_Int8 | sal_Int16 | sal_uInt8 SMALLINT | sal_Int16 | sal_Int32 | sal_uInt16 INTEGER | sal_Int32 | sal_Int64 | sal_uInt32 BIGINT | sal_Int64 | pValue (String*) | sal_uInt64 ------------------------------------------------------- When sticking an UNSIGNED TINYINT into an Any, silently promote it to UNSIGNED SMALLINT (that is sal_uInt16), else Any would take it as a sal_Bool and normalise to sal_True (1) or sal_False (0). When constructing an ORowSetValue from a sal_Bool, silently keep it as an unsigned 8 bit integer (that is understand it as a sal_uInt8). This will work in most cases, since when asked back for a bool or sal_Bool, we'll give back the right value. Only code looking at the type tag could possibly make a "wrong" decision. The main (hopefully only?) path through which this would happen is through an implementation of XParameters::setBoolean XRowUpdate::updateBoolean that would use its sal_Bool argument to construct an ORowSetValue. So make sure each implementation constructs a proper BOOLEAN so as not to get confused. For authorship/copyright purposes, this patch is a cooperation between Lionel Elie Mamane <lionel@mamane.lu> and David Ostrovsky <david@ostrovsky.org> Change-Id: I3f1f08716127147f077bff4edb6ec558b1b09e09
-
Andras Timar yazdı
Change-Id: I0a10cbb7eab77d215c15592a2121b65f1c9f3732
-
Michael Meeks yazdı
-
Petr Mladek yazdı
It is not provided by the old icecram-0.9.2 on SLED11 Change-Id: If8dc9b028276ac05733eb59c1ec62e352f4a2796
-
Tor Lillqvist yazdı
Always call IFileDialog::SetFolder() in VistaFilePickerImpl::impl_sta_SetFileName() as that seems to be what the customer wants. And overall, it is a more reasonable behavior. Change-Id: I53807847d1d8f954caefe7d9e4b4e4807e6dcbfb
-
Stephan Bergmann yazdı
Such failure happens e.g. for components that bring along duplicate UNO implementation names, and if they ever got added to an rdb, LO would afterwards refuse to start forever. Change-Id: Ia62ac496547a45f5a72fdc81543f15a417c09687
-
Stephan Bergmann yazdı
...otherwise, it will needlessly be carried forward marked "broken." Change-Id: I12fbd4430e1ecc11f1969ae5f49aed43668f2c27
-
Stephan Bergmann yazdı
Change-Id: I6fad4e840cf47b4d41592ff179f66943a4469760
-
Caolán McNamara yazdı
Change-Id: Ie4dd1d41e5cde27ec5b144ca4b7c97276ff62479 Reviewed-on: https://gerrit.libreoffice.org/1990Reviewed-by:
David Ostrovsky <David.Ostrovsky@gmx.de> Tested-by:
David Ostrovsky <David.Ostrovsky@gmx.de>
-
Noel Power yazdı
squash errors trying to gain object for rhs ( where no object yet exists ( Change-Id: I81548d1c6a32f0445dc18e31c84c3df85163ed45
-
Caolán McNamara yazdı
When the dispatched is locked, SfxRequests accumulate in aReqArr for later dispatch when unlocked via Post The pointers are typically deleted in Post, so only if we never get around to posting them do we delete the unposted requests. regression from 528aba3a Change-Id: I4c214791d356ce0e5401a87b968b53e4866f6174
-
Miklos Vajna yazdı
Change-Id: I657b2ec94e6029cc14bd29611c7b0c3ce359103b
-
Miklos Vajna yazdı
Change-Id: I08a6485d32699100b09235b2168512974347c0fa
-
Miklos Vajna yazdı
Change-Id: I4d210ecfa846c5c78970d11057c029efe0c78a3b
-
Andras Timar yazdı
Project: translations 6ae868517d1dccf88fbcdb8cd815fe1c8eeba0f8
-
Andras Timar yazdı
Project: help de27f54d6680ddd2e94899271cb44b4780644da2
-
Muthu Subramanian yazdı
-
Dávid Vastag yazdı
Project: help 683680a26c9b1327204960c0a5a56229c8232bd8 help-to-wiki.py now uses .po files as source of translations. Change-Id: I1f24f6a76781d651228bd5571f8f32fe05c0ecb9 Reviewed-on: https://gerrit.libreoffice.org/1989Reviewed-by:
Jan Holesovsky <kendy@suse.cz> Tested-by:
Jan Holesovsky <kendy@suse.cz>
-
Kohei Yoshida yazdı
But I have yet to implement the detection of Excel 4.0... Separating detection services like this will make the overall type detection process a little more reliable. It's actually not a good idea to use a single type detection service for a multitude of file format types... Change-Id: I2914c179ac939a031b84e8d37de891a5043851e6
-
Kohei Yoshida yazdı
Not used yet. Change-Id: I1d3c28c46ec3b1830b8d0c656717e95677df9508
-