Revision tags: AOO420-Dev5-m5, AOO4115-GA, AOO4114-GA, AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA, 420-Dev2-m2, AOO417, AOO420-Dev-m1, AOO416, AOO416-RC1, AOO415, AOO414, AOO413, AOO4121, AOO412, SNAPSHOT, AOO411 |
|
d9d2cc80 | 21-May-2014 |
Herbert Dürr |
#i124191# small cleanup for salframeview.mm clean up some minor warts while the behaviour remains unchanged. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@15964
#i124191# small cleanup for salframeview.mm clean up some minor warts while the behaviour remains unchanged. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1596494 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
09c47e18 | 21-May-2014 |
Herbert Dürr |
#i124191# fix horizontal scroll events on Mac A problem with horizontal scrolling was reported on Mac. Reviewing the relevant code identified some problems. The patch to fix them was con
#i124191# fix horizontal scroll events on Mac A problem with horizontal scrolling was reported on Mac. Reviewing the relevant code identified some problems. The patch to fix them was confirmed to also fix the reported problem. Found-by: erben.fr@gmail.com Tested-by: cemonadresse@orange.fr Tested-by: TrolliusX@t-online.de Tested-by: thorsten.wagner.4@gmail.com git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1596491 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
86e1cf34 | 29-Apr-2014 |
Pedro Giffuni |
Many spelling fixes: directories r* - z*. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame
Many spelling fixes: directories r* - z*. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it is somewhat shameful that this wasn't done before. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591062 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO410, AOO410_Beta |
|
01367266 | 24-Feb-2014 |
Herbert Dürr |
#i123840# prefer NSZero* constants over open coded altetnatives git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1571189 13f79535-47bb-0310-9956-ffa450edef68 |
2fb76c82 | 06-Feb-2014 |
Herbert Dürr |
#i123795# amend r1565258's commit with its missing part git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1565295 13f79535-47bb-0310-9956-ffa450edef68 |
245318c3 | 06-Feb-2014 |
Herbert Dürr |
#i114728# set AOO's Mac baseline to OSX 10.7 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1565259 13f79535-47bb-0310-9956-ffa450edef68 |
97dacec1 | 06-Feb-2014 |
Herbert Dürr |
#i123795# add a windowForParent() method for AquaA11yWrapper for getting the parent window of an A11y enabled NSView. The method viewElementForParent() was abused for that purpose, but i
#i123795# add a windowForParent() method for AquaA11yWrapper for getting the parent window of an A11y enabled NSView. The method viewElementForParent() was abused for that purpose, but it was mis-named and mis-typed. The new method cleans this up and the now unused viewElementForParent() method can be retired. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1565258 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
2dae3561 | 23-Jan-2014 |
Herbert Dürr |
#i123895# add VCL support for 64bit OSX port git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1560745 13f79535-47bb-0310-9956-ffa450edef68 |
24a22e85 | 08-Jan-2014 |
Herbert Dürr |
#i123895# make the Mac code 64bit clean regarding CGFloat/float mismatches git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1556533 13f79535-47bb-0310-9956-ffa450edef68 |
8a718ffc | 17-Dec-2013 |
Herbert Dürr |
#i123840# normalize SalFrame resolution type to sal_Int32 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1551563 13f79535-47bb-0310-9956-ffa450edef68 |
bde8a4bd | 02-Dec-2013 |
Herbert Dürr |
#i123795# variable names should not confuse vcl Window and cocoa NSWindow types VCL's Window type and Cocoa's NSWindow type are quite different. Naming variables as if they were the same
#i123795# variable names should not confuse vcl Window and cocoa NSWindow types VCL's Window type and Cocoa's NSWindow type are quite different. Naming variables as if they were the same introduces gratuitous complexity especially when debugging stacks where both types are used. The names of NSView type variables have been adjusted too. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1547078 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO401, AOO400 |
|
c1f635d7 | 03-Jun-2013 |
Herbert Dürr |
#i121406# #i119006# fix NSWindow's performSelector:withObject type NSWindow uses the type-casted plain integers instead of the boxed number objects (aka NSNumber) git-svn-i
#i121406# #i119006# fix NSWindow's performSelector:withObject type NSWindow uses the type-casted plain integers instead of the boxed number objects (aka NSNumber) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1488999 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
cd426cce | 17-Apr-2013 |
Herbert Dürr |
avoid problems with C++ initializer lists (N2672) in our Aqua code when the provided type and the target type of an initializer list don't match the new behaviour described in C++11's N2
avoid problems with C++ initializer lists (N2672) in our Aqua code when the provided type and the target type of an initializer list don't match the new behaviour described in C++11's N2672 proposal can be triggered. Though that is very useful in general it complicates things for our case so that we're better of to use the little helpers provided by XCode's CF framework. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1468907 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
0376cbd9 | 26-Mar-2013 |
Herbert Dürr |
#i119006# NSObject's performSelector:withObject expects a NSNumber argument git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1461043 13f79535-47bb-0310-9956-ffa450edef68 |
457e662b | 21-Mar-2013 |
Herbert Dürr |
protect SalFrameView's isOpaque() method by an isAlive() check git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1459376 13f79535-47bb-0310-9956-ffa450edef68 |
6669cefe | 18-Jan-2013 |
Herbert Dürr |
#i119006# disable OSX>=10.7 window restoration until we support it directly git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1435109 13f79535-47bb-0310-9956-ffa450edef68 |
83ef4b77 | 18-Dec-2012 |
Herbert Dürr |
#i121406# remove willEnter/willExit-FullScreen methods until they become more useful git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1423523 13f79535-47bb-0310-9956-ffa450edef68 |
b9aaf9d4 | 18-Dec-2012 |
Herbert Dürr |
#i121406# support the OSX>=10.7 fullscreen mode based on OSX Spaces git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1423520 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO340 |
|
79aad27f | 15-Feb-2012 |
Herbert Dürr |
remove svn:executable properties from more source files git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1244544 13f79535-47bb-0310-9956-ffa450edef68 |
323de322 | 30-Nov-2011 |
Andrew Rist |
Update headers to Alv2 headers git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1208186 13f79535-47bb-0310-9956-ffa450edef68 |
9f62ea84 | 06-Nov-2011 |
Andrew Rist |
Update headers to Alv2 headers git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1198320 13f79535-47bb-0310-9956-ffa450edef68 |
ff005604 | 10-Sep-2011 |
Eike Rathke |
ooo34gsl10: #i117587# handle application resigning/becoming active during presentation # User Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> git-svn-id: https://svn.apache.org/re
ooo34gsl10: #i117587# handle application resigning/becoming active during presentation # User Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1167573 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
cdf0e10c | 16-Aug-2011 |
rcweir |
Initial import of the old OOo hg repository tip revision. .../trunk/main is a copy of (currently tip-most) http://hg.services.openoffice.org/OOO340/rev/c904c1944462 .../trunk/
Initial import of the old OOo hg repository tip revision. .../trunk/main is a copy of (currently tip-most) http://hg.services.openoffice.org/OOO340/rev/c904c1944462 .../trunk/extras/l10n is a copy of (currently tip-most) http://hg.services.openoffice.org/master_l10n/OOO340/rev/af6bc9467af5 Note that the following files with line-end and/or encoding anomalies were left out (they will need to be to be checked in separately): /ooo/trunk/core/dictionaries/de_DE/README_hyph_de_DE.txt /ooo/trunk/core/dictionaries/de_CH/README_hyph_de_CH.txt /ooo/trunk/core/dictionaries/de_AT/README_hyph_de_AT.txt /ooo/trunk/core/gettext/gettext-0.18.1.1.patch /ooo/trunk/core/apache-commons/patches/codec.patch /ooo/trunk/core/libcroco/libcroco-0.6.2.patch /ooo/trunk/core/testautomation/writer/optional/input/import/mactext.txt /ooo/trunk/core/graphite/graphite-2.3.1.patch /ooo/trunk/core/hwpfilter/source/hwpeq.cpp /ooo/trunk/core/solenv/bin/cwstouched.pl /ooo/trunk/core/readlicense_oo/html/THIRDPARTYLICENSEREADME.html /ooo/trunk/core/writerfilter/source/doctok/escher.html /ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/xsdlib.xsd /ooo/trunk/core/writerfilter/source/odiapi/qname/resource/office2003/WordprocessingML Schemas/wordnetaux.xsd /ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/body.xsl /ooo/trunk/core/filter/source/xslt/odf2xhtml/export/common/styles/style_mapping_css.xsl Also: Repository.mk from the l10n toplevel git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1162288 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|