History log of /trunk/main/sal/inc/ (Results 1 - 25 of 59)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
604463aa01-Apr-2024 John Bampton

Fix spelling in code comments (#208)

* Fix spelling in code comments

* Update ImageControl.cxx

---------

Co-authored-by: Matthias Seidel <mseidel@apache.org>

98d7f78d22-Feb-2024 John Bampton

docs: fix spelling in code comments (#205)

Revision tags: AOO420-Dev5-m5, AOO4115-GA, AOO4114-GA, AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA, AOO4111-GA
6e8337c124-Aug-2021 mseidel

Fixed typos, small cleanup

64b67dd522-Aug-2021 mseidel

Fixed mixed style (space/tabs) in indentation

Revision tags: AOO420-Dev3-m3
6e9cccf426-Apr-2021 mseidel

Fixed typos (initalize -> initialize)

Revision tags: AOO4110-GA
f9f5b56625-Mar-2021 mseidel

Fixed typo (arbitray -> arbitrary)

Revision tags: AOO419-GA, AOO418-GA
7950f2af14-Jun-2020 mseidel

Fixed typos (the the -> the) and some more

Revision tags: 420-Dev2-m2, AOO417, AOO420-Dev-m1
d92161c411-Jan-2019 Jim Jagielski

Get macOS building and packaging again. Following changes/fixes:

o Stop pretending/forcing *Nix shared lib versioning on macOS
o Use smaller and more easily manageable temp temps by

Get macOS building and packaging again. Following changes/fixes:

o Stop pretending/forcing *Nix shared lib versioning on macOS
o Use smaller and more easily manageable temp temps by leveraging --headerpad dyld option
o misc gbuild fixes



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

show more ...

Revision tags: AOO416, AOO416-RC1
4078a61118-Aug-2018 Don Lewis

Arrays allocated with new [] should be freed using delete[].



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

a8f4084d31-May-2018 Matthias Seidel

Fixed typos:
contructor -> constructor
convinient -> convenient

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

Revision tags: AOO415
11ac63c805-Mar-2018 Damjan Jovanovic

Add some initial fixes for Win64 in main/sal.

Patch by: me



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

2de5e72328-Dec-2017 Yuri Dario

#i126518# OS/2 link with system libcx0 to use new exception and memory mapping handling.

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

#i126518# OS/2 link with system libcx0 to use new exception and memory mapping handling.

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

show more ...

Revision tags: AOO414, AOO413
bcc22a4c07-Feb-2017 Damjan Jovanovic

Add initial support for building AOO with Clang on Linux.

This allows Ubuntu 16.04 to compile AOO with Clang 1.8 on an x86.

Other architectures probably don't work, as Clang 1.8 is

Add initial support for building AOO with Clang on Linux.

This allows Ubuntu 16.04 to compile AOO with Clang 1.8 on an x86.

Other architectures probably don't work, as Clang 1.8 is pretty
strict about the low-level C++ ABI hacks in main/bridges, but at
least they should fail early in main/bridges instead of the
previous behaviour, where main/bridges compiles nothing when
"$(COM)" != "GCC" and main/i18npool then fails with a mysterious
"error: cannot get uno environments" message.

Patch by: me



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

show more ...

b9fd132d24-Dec-2016 pfg

Add some "Revision" svn keywords.

Revisions were used within the tree, perhaps inherited by previous
CVS/Subversion usage. Re-use them now since we have been lazy about
updating them

Add some "Revision" svn keywords.

Revisions were used within the tree, perhaps inherited by previous
CVS/Subversion usage. Re-use them now since we have been lazy about
updating them manually and because they can be useful for bug reports.


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

show more ...

e15a453408-Dec-2016 pfg

Update endianness detection on FreeBSD.

This produces a working AOO on FreeBSD PowerPC64!

This is related to i126615 which was also fixed by Curtis a while ago.
Kudos for both c

Update endianness detection on FreeBSD.

This produces a working AOO on FreeBSD PowerPC64!

This is related to i126615 which was also fixed by Curtis a while ago.
Kudos for both contributions, makes me want to get a PowerPC to run
FreeBSD + AOO on it!

Author: Curtis Hamilton -- cmhamilto at gmail


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

show more ...

898153d903-Sep-2016 truckman

In the SAL_UNUSED macro, __attribute((__unused__)) should be
__attribute__((__unused__)), but both clang and gcc seem to understand
both.

Since __attribute__((__unused__)) can precee

In the SAL_UNUSED macro, __attribute((__unused__)) should be
__attribute__((__unused__)), but both clang and gcc seem to understand
both.

Since __attribute__((__unused__)) can preceed the variable name, just
like __pragma(warning(suppress:4100;suppress:4101)) for Visual Studio,
so de-parameterize the SAL_UNUSED macro.

Gcc whines if __attribute__((__unused__)) is used for a struct member,
so create a separate define, SAL_UNUSED_MEMBER, which is empty for
gcc, to handle struct members.



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

show more ...

3d28333a01-Sep-2016 truckman

Fix -Wunused-private-field errors in sc/inc/compiler.hxx. The structure
ScDoubleRawToken contains four unused private fields. Mark these as
unused to eliminate the warning message. We can'

Fix -Wunused-private-field errors in sc/inc/compiler.hxx. The structure
ScDoubleRawToken contains four unused private fields. Mark these as
unused to eliminate the warning message. We can't delete these fields
because we want the layout of this structure to match ScRawToken.



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

show more ...

Revision tags: AOO4121
30acf5e822-May-2016 pfg

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535

Spelling, spelling ...

Why worry about some sprinkled German when we haven't yet learned English.


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

show more ...

b8bbe16f25-Mar-2016 truckman

#i126890# code: compiling with recent clang generates thousands of infinite-recu
rsion warnings about DbgOut()

If the definition of the overloaded function DbgOut() in
sal/inc/rtl/st

#i126890# code: compiling with recent clang generates thousands of infinite-recu
rsion warnings about DbgOut()

If the definition of the overloaded function DbgOut() in
sal/inc/rtl/string.hxx is compiled without having first compiling
the the declaration of DbgOut() with a different signature in
tools/inc/tools/debug.hxx, the compiler thinks DbgOut() is calling
itself recursively with no means of escape.

Fix this in the case where DBG_UTIL is defined by including
<tools/debug.hxx> inside string.hxx so that the compiler will
encounter the declaration of DbgOut() in debug.hxx first in this
case. This requires adding a couple of directories to the compiler
include path so that the new consumers of <tools/debug.hxx> can
find it as well as one of its dependencies.

If DBG_UTIL is not defined, then debug.hxx does not declare DbgOut(),
so fix this case by hiding the DbgOut() definition in string.hxx
behind #ifdef DBG_UTIL since it won't be used in this case.



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

show more ...

Revision tags: AOO412, SNAPSHOT
ff6ab01c06-Oct-2015 Andrea Pescetti

#i125194# #i126305# Move new enum to last position.
Patch by: Giuseppe Castagno.


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

#i125194# #i126305# Move new enum to last position.
Patch by: Giuseppe Castagno.


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

show more ...

4b40cfcd06-Oct-2015 Damjan Jovanovic

#i125003# eliminate cppunittester, include files, and all cppunit usage in ported tests from from main/sal.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1707101 13

#i125003# eliminate cppunittester, include files, and all cppunit usage in ported tests from from main/sal.



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

show more ...

Revision tags: AOO411
9c0df32324-Sep-2015 Andrea Pescetti

#i125194# Fix WebDAV file locking.
Patch by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1705196 13f79535-47bb-0

#i125194# Fix WebDAV file locking.
Patch by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>


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

show more ...

cddbce8326-Mar-2015 Pedro Giffuni

Move operator to the public section.

This solves visibility issues with modern gcc.

Author: Don Lewis (truckman at FreeBSD)


git-svn-id: https://svn.apache.org/

Move operator to the public section.

This solves visibility issues with modern gcc.

Author: Don Lewis (truckman at FreeBSD)


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

show more ...

cda7f8b326-Mar-2015 Pedro Giffuni

Bring to SAL a wrapper implementation of the powr() IEEE 754 math function.

This function was originally brought in r1444110 and is useful for
OOXML compatibility. At this time it is not

Bring to SAL a wrapper implementation of the powr() IEEE 754 math function.

This function was originally brought in r1444110 and is useful for
OOXML compatibility. At this time it is not being used to fix the
original issue it was meant to address but it is convenient for
future use.

It also reduces the differences from FreeBSD's port which will
be receiving updates.



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

show more ...

9246b6a218-Jun-2014 Herbert Dürr

#i125112# fix CStringHash functor to match full strings only

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

123