History log of /trunk/main/vcl/unx/ (Results 1 - 25 of 63)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: AOO420-Dev5-m5
9e38389914-Jan-2024 Arrigo Marchiori

Ensure default substitutions on patterns

This is requested by the documentation of function FcFontMatch().

Addresses bug #128583.

Revision tags: AOO4115-GA
a72d41dc20-Jan-2023 Damjan Jovanovic

Allow us to build against the C++14 standard, while
not breaking compatibility with C++98.

Clang 13 and 15 on FreeBSD can successfully compile OpenOffice
when "-std=c++14" is set in

Allow us to build against the C++14 standard, while
not breaking compatibility with C++98.

Clang 13 and 15 on FreeBSD can successfully compile OpenOffice
when "-std=c++14" is set in gbuild and dmake, and Clang 15 can
still compile it with these changes and "-std=gnu++98".

Most of the changes involved fixing bad code, eg. NULL being
implicitly converted to sal_False, NULL being converted to typed
pointers using reinterpet_cast instead of static_cast, and integer
conversions to shorter integers.

Note that this does not change the currently targeted C++
standard on Linux and FreeBSD, which remains gnu++98.

Patch by: me

show more ...

Revision tags: AOO4114-GA, AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA
2df387e606-Oct-2020 mseidel

Fixed typos (beeing -> being) and some more

Revision tags: 420-Dev2-m2
958717d527-Oct-2019 Ariel Constenla-Haile

Avoid comparison between pointer and integer

b2b6b13816-Sep-2019 mseidel

Fixed typos, removed whitespace

Revision tags: AOO417
036fea6109-Aug-2019 Damjan Jovanovic

More unknwon -> unknown typos.

Patch by: me

d8faddcc08-Jun-2019 Matthias Seidel

Fixed typos (determins-> determines)

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

74cbd1f108-Jun-2019 Matthias Seidel

Fixed typos (wether -> whether)

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

Revision tags: AOO420-Dev-m1, AOO416, AOO416-RC1
c1e8cc3a01-May-2018 Don Lewis

The register storage class is deprecated and is incompatible with C++17.
Modern compilers have mostly been ignoring it, probably other than to
forbid the use of the address-of operator. Get

The register storage class is deprecated and is incompatible with C++17.
Modern compilers have mostly been ignoring it, probably other than to
forbid the use of the address-of operator. Get ahead of the game and
delete it now.

Reported by clang 6.



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

show more ...

bccc157201-May-2018 Don Lewis

Fix the easy cast-related errors reported by clang 6 in its default
C++14 mode.



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

Fix the easy cast-related errors reported by clang 6 in its default
C++14 mode.



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

show more ...

Revision tags: AOO415
af7a586e16-Jan-2018 Tsutomu Uchino

#i127662# send better window position to input method for suggestion window

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

Revision tags: AOO414, AOO413
7b4f406622-Dec-2016 pfg

Re-enable some Id svn:keywords.

Most of these pre-existed in the code, probably due to older version
control. New Id keywords were added only in these files:

main/solenv/inc/mi

Re-enable some Id svn:keywords.

Most of these pre-existed in the code, probably due to older version
control. New Id keywords were added only in these files:

main/solenv/inc/minor.mk
main/vcl/unx/kde4/KDEXLib.cxx

The latter are important as they keep release information and we want
to maintain such references when new versions are bumped.
While here, update the information for KDE.




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

show more ...

557fdb9621-Dec-2016 damjan

Use "OpenOffice" instead of "soffice" as our KDE appName.

Patch by: pfg
Reviewed by: me



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

Use "OpenOffice" instead of "soffice" as our KDE appName.

Patch by: pfg
Reviewed by: me



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

show more ...

47208bf921-Dec-2016 damjan

AOO was failing to start on KDE4 with
"Couldn't register name ... with D-BUS - another process owns it already!",
(which is the wrong error on KDE's part), as the appName passed to KAboutData

AOO was failing to start on KDE4 with
"Couldn't register name ... with D-BUS - another process owns it already!",
(which is the wrong error on KDE's part), as the appName passed to KAboutData's
constructor was "Apache OpenOffice" and spaces and slashes are not allowed
(see https://forum.kde.org/viewtopic.php?f=64&t=62521).
Let's use "soffice" instead, as appName is an internal name after all.

Patch by: me



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

show more ...

851abcd931-Aug-2016 truckman

Fix -Wformat-security warnings.

There are a number of instances where the code calls *printf() to
print arbitrary strings and the string is passed as the format
argument to *printf()

Fix -Wformat-security warnings.

There are a number of instances where the code calls *printf() to
print arbitrary strings and the string is passed as the format
argument to *printf(). Since these strings might contain %
conversion sequences, this is a security hazard. Fix the problem
by printing the strings with a "%s" format.



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

show more ...

Revision tags: AOO4121
788ab39624-Nov-2015 Pedro Giffuni

Uninitialized scalar variable

CID: 1028321, 1028322, 1028323


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

Revision tags: AOO412, SNAPSHOT, AOO411
fe912e6821-Jan-2015 Ariel Constenla-Haile

i46871 - Add French translation for Space key

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

3d4efda814-Jan-2015 Tsutomu Uchino

#i125991# catch IndexOutOfBoundsException to avoid fatal error happen when input method is used on Gtk environment

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

#i125991# catch IndexOutOfBoundsException to avoid fatal error happen when input method is used on Gtk environment

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

show more ...

cbc3d69623-Jun-2014 Herbert Dürr

#i124970# fix DocumentFocusListener::notifyEvent's handling of IndexOutOfBoundsException

the DocumentFocusListener::notifyEvent() throw list only allows a RuntimeException to
propagate.

#i124970# fix DocumentFocusListener::notifyEvent's handling of IndexOutOfBoundsException

the DocumentFocusListener::notifyEvent() throw list only allows a RuntimeException to
propagate. The methods called in notifyEvent() allow IndexOutOfBoundsException though,
so it must be handled in all cases to prevent C++ from invoking its unexpected() abort
mechanisms. Ceterum censeo, non-empty throw lists should be removed altogether...


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

show more ...

f02ea3ea20-Jun-2014 Juergen Schmidt

#121627# merge fix from aoo410 branch that fixes the geometry calculations for scroll bars

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

#121627# merge fix from aoo410 branch that fixes the geometry calculations for scroll bars

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

show more ...

86e1cf3429-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
a453dfd501-Apr-2014 Andre Fischer

i124482: Special handling of input field backgrounds of Adwaita theme (Merged from branch AOO410).

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

i124482: Special handling of input field backgrounds of Adwaita theme (Merged from branch AOO410).

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

show more ...

Revision tags: AOO410_Beta
ac96698a30-Dec-2013 Tsutomu Uchino

#i122950# fix duplicated input when input method convert a character on gtk environment

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

#i122950# fix duplicated input when input method convert a character on gtk environment

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

show more ...

04daac5518-Dec-2013 Herbert Dürr

#i123865# fix typo in i18n_xkb's constructor

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

54ae6a3717-Dec-2013 Herbert Dürr

#i123840# normalize SalGraphics point count argument types to sal_uInt32

The old mixture of sal_uInt32, ULONG, sal_uLong, sal_uIntPtr gets
consolidated. 4e9 points are more than enough f

#i123840# normalize SalGraphics point count argument types to sal_uInt32

The old mixture of sal_uInt32, ULONG, sal_uLong, sal_uIntPtr gets
consolidated. 4e9 points are more than enough for a SalGraphics.


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

show more ...

123