| c3ef676a | 16-May-2014 |
Tsutomu Uchino |
#i98216# extract boolean value for AutoFill value of ComboBox model git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1595141 13f79535-47bb-0310-9956-ffa450edef68 |
| 8eac7375 | 15-May-2014 |
Herbert Dürr |
#i124796# fix Preferences->OpenOffice->Appearance tabpage listbox column width Patch-by: Thorsten Wagner <thorsten.wagner.4@gmail.com> git-svn-id: https://svn.apache.org/repos/
#i124796# fix Preferences->OpenOffice->Appearance tabpage listbox column width Patch-by: Thorsten Wagner <thorsten.wagner.4@gmail.com> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594952 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| ae5c9b6c | 15-May-2014 |
Herbert Dürr |
#i124908# remove custom allocator support in stlport-replacement headers with the sal-internal custom allocator removed AOO no longer needs the stlport-replacement headers to support the
#i124908# remove custom allocator support in stlport-replacement headers with the sal-internal custom allocator removed AOO no longer needs the stlport-replacement headers to support the complexity of containers with non-default allocators. Xcode>=5.1's libc++ runs into build problems with such custom allocator support in the stlport-replacement headers because of constness mismatches. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594887 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 5766e809 | 15-May-2014 |
Herbert Dürr |
#i124422# fix default arguments in friend declarations chapter 8.3.6.4 of the C++11 standard requests that friend declarations must not specify default unless these declarations are also
#i124422# fix default arguments in friend declarations chapter 8.3.6.4 of the C++11 standard requests that friend declarations must not specify default unless these declarations are also definitions. Older compilers still tolerate such constructs that were still undecided until http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#136 but clang>=3.4 or xcode>=5.1 now report errors for such code. The errors break the build and so they have to be fixed. Cleaner alternatives to the fixes are possible but for now they are intended to allow the build while being minimally invasive. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594871 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 4d40bd34 | 15-May-2014 |
Herbert Dürr |
#i124422# fix implicit conversions to pointer from bool/int32 implicit conversions from bool or int32 to pointer types are not a good idea and clang>=3.4 or xcode>=5.1 now report errors
#i124422# fix implicit conversions to pointer from bool/int32 implicit conversions from bool or int32 to pointer types are not a good idea and clang>=3.4 or xcode>=5.1 now report errors for such code. The errors break the build and so they have to be fixed. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594864 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| cf25d982 | 15-May-2014 |
Herbert Dürr |
#i124422# fix comparisons between pointers and bools or integers comparing pointers with bools or integers is not a good idea and clang>=3.4 or xcode>=5.1 now report errors for such code
#i124422# fix comparisons between pointers and bools or integers comparing pointers with bools or integers is not a good idea and clang>=3.4 or xcode>=5.1 now report errors for such code. The errors break the build and so they have to be fixed. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594862 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 22076bf1 | 15-May-2014 |
Herbert Dürr |
#i124896# remove obsoleted sal-module-internal custom STL allocator The SAL module avoided the heavy dependency on the stlport4-libraries by using a custom allocator for its internal STL
#i124896# remove obsoleted sal-module-internal custom STL allocator The SAL module avoided the heavy dependency on the stlport4-libraries by using a custom allocator for its internal STL containers. With stlport4 removed these dependencies are gone and the SAL-internal custom allocator is obsoleted. Since the custom allocator results in build problems with clang>=3.4 or xcode>=5.1 it is time to remove it for good. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594842 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 020bbb1d | 15-May-2014 |
Herbert Dürr |
#i124875# use AVAsset's best guess duration if AVPlayerItem isn't ready yet in AV Foundation the most accurate media asset duration is available when the AVPlayerItem's status changes to
#i124875# use AVAsset's best guess duration if AVPlayerItem isn't ready yet in AV Foundation the most accurate media asset duration is available when the AVPlayerItem's status changes to AVPlayerItemStatusReadyToPlay. There already is an observer for this, but the upper layers expect getDuration() to be synchronous and to return within a reasonable time. Since returning an approximation is sufficient using the AVAsset's duration as fallback is fine. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594838 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 426294d4 | 13-May-2014 |
Herbert Dürr |
#i124875# pre-register the Mac AVFoundation component git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594208 13f79535-47bb-0310-9956-ffa450edef68 |
| 0c4f5f58 | 13-May-2014 |
Herbert Dürr |
#i124800# reenable pre-registration of the quicktime component git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594206 13f79535-47bb-0310-9956-ffa450edef68 |
| 32322404 | 12-May-2014 |
Herbert Dürr |
#i124875# avoid wasteful loading of an AVAsset in MacAVF::Framegrabber FrameGrabber used to load its own copy of a movie. Since multimedia content is often very data-intensive this shoul
#i124875# avoid wasteful loading of an AVAsset in MacAVF::Framegrabber FrameGrabber used to load its own copy of a movie. Since multimedia content is often very data-intensive this should and can be avoided by using the movie asset already available in the Player. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594017 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| e8649ecd | 12-May-2014 |
Herbert Dürr |
#i124875# avoid avmedia build problems with multiple active backends in the dmake build environment active header and source files with the same name result in problems when in the same
#i124875# avoid avmedia build problems with multiple active backends in the dmake build environment active header and source files with the same name result in problems when in the same project. The Quicktime and MacAVF files have been renamed so that both can be active concurrently. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1594013 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| eb7664d6 | 12-May-2014 |
Herbert Dürr |
#i124875# support Mac AV-Foundation API for multimedia content git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1593965 13f79535-47bb-0310-9956-ffa450edef68 |
| 9675ef41 | 08-May-2014 |
Herbert Dürr |
#i124422# adjust include path for libc++ headers to the selected XCode folder While XCode5's xcode-select supports the -p and --print-path options, XCode4 officially only knows -print-pa
#i124422# adjust include path for libc++ headers to the selected XCode folder While XCode5's xcode-select supports the -p and --print-path options, XCode4 officially only knows -print-path. XCode4 seems to tolerate --print-path though (tested on XCode4.6), so this can be universally used. Patch-by: Thorsten Wagner <thorsten.wagner.4@gmail.com> Review-by: Herbert Duerr <hdu@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1593205 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 83ef26d8 | 08-May-2014 |
Tsutomu Uchino |
#i27364# set line count of dropdown to 9 for document list of navigator on Writer git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1593203 13f79535-47bb-0310-9956-ffa450edef68 |
| cf132de2 | 06-May-2014 |
Herbert Dürr |
#i124800# switch avmedia's QuickTime component to QTKit for now because the QuickTime API is not available to 64bit clients. The switch to QTKit is temporary only because it has already
#i124800# switch avmedia's QuickTime component to QTKit for now because the QuickTime API is not available to 64bit clients. The switch to QTKit is temporary only because it has already been deprecated in OSX 10.9. We'll have to switch to OSX's AVFoundation framework instead soon. Suggested by: Ariel Constenla-Haile <arielch@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1592716 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 68047778 | 06-May-2014 |
Herbert Dürr |
#i124823# fix the calculation of leading metrics for CoreText git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1592692 13f79535-47bb-0310-9956-ffa450edef68 |
| 892b8f20 | 30-Apr-2014 |
Pedro Giffuni |
Fix build with gcc on FreeBSD-i386. There is an issue building the bridges module with newer versions of gcc. Merge a local workaround for gcc used in amd64 (r1424178) to fix the bui
Fix build with gcc on FreeBSD-i386. There is an issue building the bridges module with newer versions of gcc. Merge a local workaround for gcc used in amd64 (r1424178) to fix the build. Reference: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/187218 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591501 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 69910d95 | 30-Apr-2014 |
Ariel Constenla-Haile |
i124783 - Fix wrong CPU string for MacOSX x86_64 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591351 13f79535-47bb-0310-9956-ffa450edef68 |
| 4dc2a9a2 | 30-Apr-2014 |
Ariel Constenla-Haile |
Add extension description git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591347 13f79535-47bb-0310-9956-ffa450edef68 |
| 40286176 | 30-Apr-2014 |
Ariel Constenla-Haile |
Add support for MacOSX x86_64 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591346 13f79535-47bb-0310-9956-ffa450edef68 |
| 87bbf24b | 30-Apr-2014 |
Oliver-Rainer Wittmann |
117749: remove unused local variable patch by: caolanm@redhat.com git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591267 13f79535-47bb-0310-9956-ffa
117749: remove unused local variable patch by: caolanm@redhat.com git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591267 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| d125dbfc | 29-Apr-2014 |
Pedro Giffuni |
Fix build after too happy script renamed a function. The spelling issue is real but we can't really start renaming functions in the API. Reported by: arielch
Fix build after too happy script renamed a function. The spelling issue is real but we can't really start renaming functions in the API. Reported by: arielch git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591100 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
| 211c5700 | 29-Apr-2014 |
Pedro Giffuni |
Small typo. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591078 13f79535-47bb-0310-9956-ffa450edef68 |
| b4abecfe | 29-Apr-2014 |
Pedro Giffuni |
Many spelling fixes: some more files. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. Did I mention this is m
Many spelling fixes: some more files. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. Did I mention this is more important than translating German comments? ;) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591066 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|