History log of /aoo41x/main/comphelper/ (Results 1 - 25 of 39)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
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
be7fbbea06-Sep-2015 Pedro Giffuni

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis

git-svn-id: https://svn.apache.org/repos/asf/ope

Clean up all of typos that cause header guard warnings when building the
OpenOffice source with clang.

Submitted by: Don Lewis

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1701535 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit c64f2bbd0edaad703073b2f91f32833ae4aefc42)

show more ...

4082994d05-Aug-2021 Jim Jagielski

bool strangeness...

(cherry picked from commit 70aac8b51665545813b3f6de032a774876a9e74d)

611fcdab21-Sep-2017 Jim Jagielski

OLE update verification. Keep user in-the-know and query them.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO414@1809153 13f79535-47bb-0310-9956-ffa450edef68

cf914f8403-Aug-2017 Jim Jagielski

No previews


git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO414@1803941 13f79535-47bb-0310-9956-ffa450edef68

3edf699225-Sep-2015 Andrea Pescetti

#i126305# Apply the full WebDAV patch.
Patch by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>


git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1705278 1

#i126305# Apply the full WebDAV patch.
Patch by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>


git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1705278 13f79535-47bb-0310-9956-ffa450edef68

show more ...

5f30f85e25-Sep-2015 Andrea Pescetti

#i126305# Temporary revert build breaker (limited to the AOO410 branch).



git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1705247 13f79535-47bb-0310-9956-ffa

#i126305# Temporary revert build breaker (limited to the AOO410 branch).



git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1705247 13f79535-47bb-0310-9956-ffa450edef68

show more ...

8fd7bf9d24-Sep-2015 Andrea Pescetti

#i126305# Add support for WebDAV locking.
Patch by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>


git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@170520

#i126305# Add support for WebDAV locking.
Patch by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>


git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1705201 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0dfb9e3707-Aug-2014 Armin Le Grand

i125386 secured user request and changed some bools to bitfield

git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1616489 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO410, AOO410_Beta
49b3479212-Feb-2014 Herbert Dürr

#i123862# use O*String's isEmpty() method to check for emptiness in the comphelper module

Patch-by: j.nitschke@ok.de
Review-by: hdu@apache.org


git-svn-id: https://svn.apach

#i123862# use O*String's isEmpty() method to check for emptiness in the comphelper module

Patch-by: j.nitschke@ok.de
Review-by: hdu@apache.org


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1567594 13f79535-47bb-0310-9956-ffa450edef68

show more ...

7d472e4518-Dec-2013 Herbert Dürr

#i123859# avoid incomplete Locale class as return value

Some static Locale methods used the Locale class as return value type while it was
still incompletely defined. Most compilers allo

#i123859# avoid incomplete Locale class as return value

Some static Locale methods used the Locale class as return value type while it was
still incompletely defined. Most compilers allow this, but in general C++ doesn't
require them to do so. Using a const reference as return value solves this, improves
the C++ compliance and avoids unneeded copy constructions.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1551855 13f79535-47bb-0310-9956-ffa450edef68

show more ...

24c56ab928-Nov-2013 Herbert Dürr

#i123068# remove implicit conversions from rtl strings to their elements

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1546390 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO401
7768daca14-Aug-2013 Herbert Dürr

WaE: fix header guard mismatch in evtmethodhelper.hxx


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1513819 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO400
57a9858a28-May-2013 Herbert Dürr

#i122378# avoid non-iterator bound std::transform() in namedvaluecollection.hxx

in some build environments the use of std::transform() with plain pointers as
input iterators results in m

#i122378# avoid non-iterator bound std::transform() in namedvaluecollection.hxx

in some build environments the use of std::transform() with plain pointers as
input iterators results in many warnings about how unsafe such a construct is.
The warnings could be suppressed e.g. on MSVC with the SCL_SECURE_NO_WARNINGS
define. Open coding the construct makes it cleaner and more debugable though.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1486840 13f79535-47bb-0310-9956-ffa450edef68

show more ...

82c0ddf227-May-2013 Herbert Dürr

#i122208# include <algorithm> explicitly if functions from <algorithm> are used

most STLs include relevant parts of it indirectly, but
one can not depend on it (seen with MSVC's tr1 head

#i122208# include <algorithm> explicitly if functions from <algorithm> are used

most STLs include relevant parts of it indirectly, but
one can not depend on it (seen with MSVC's tr1 headers)


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1486646 13f79535-47bb-0310-9956-ffa450edef68

show more ...

910823ae18-Apr-2013 Jürgen Schmidt

#121996# integrate first part to remove 3layer office

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1469276 13f79535-47bb-0310-9956-ffa450edef68

f1a8ced411-Feb-2013 Herbert Dürr

minor spelling fix for comphelper's comparison functors

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1444840 13f79535-47bb-0310-9956-ffa450edef68

Revision tags: AOO340
dfc843fa18-Jul-2012 Armin Le Grand

add comphelper::newArray_{null,ex}, checking for overflow
Patch by: Michael Stahl

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1362850 13f79535-47bb-0310-9956-ffa450e

add comphelper::newArray_{null,ex}, checking for overflow
Patch by: Michael Stahl

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1362850 13f79535-47bb-0310-9956-ffa450edef68

show more ...

812ab29a18-Jul-2012 Armin Le Grand

add comphelper::newArray_{null,ex}, checking for overflow
Patch by: Michael Stahl

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1362847 13f79535-47bb-0310-9956-ffa450e

add comphelper::newArray_{null,ex}, checking for overflow
Patch by: Michael Stahl

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1362847 13f79535-47bb-0310-9956-ffa450edef68

show more ...

08c6ef9709-Jul-2012 Andre Fischer

#i120168# Do not call storeOwn() when not necessary.

Patch by: lizh.fee
Review by: Andre Fischer


git-svn-id: https://svn.apache.org/repos/asf/incubator/

#i120168# Do not call storeOwn() when not necessary.

Patch by: lizh.fee
Review by: Andre Fischer


git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1359225 13f79535-47bb-0310-9956-ffa450edef68

show more ...

6170fa3c21-Jun-2012 Armin Le Grand

#119941# Avoid crash when chart is removed in Writer by keepintg it's storage and graphic stream.
Patch by: Clarence Guo, zhaoshzh
Review by: alg
Found by: Shan Zhu

git-svn-id: h

#119941# Avoid crash when chart is removed in Writer by keepintg it's storage and graphic stream.
Patch by: Clarence Guo, zhaoshzh
Review by: alg
Found by: Shan Zhu

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1352571 13f79535-47bb-0310-9956-ffa450edef68

show more ...

8601a46521-Jun-2012 Andre Fischer

Forward debug=<value> argument from build to make.

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1352475 13f79535-47bb-0310-9956-ffa450edef68

7ee1d29c10-Jun-2012 Ariel Constenla-Haile

GCC 4.7 build breakers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1348595 13f79535-47bb-0310-9956-ffa450edef68

58d7008031-Mar-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1307668 13f79535-47bb-0310-9956-ffa450edef68

b31e36b322-Feb-2012 Andrew Rist

Update headers to Alv2 headers

git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1292501 13f79535-47bb-0310-9956-ffa450edef68

79aad27f15-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

12