Commit graph

294387 commits

Author SHA1 Message Date
Tor Lillqvist
e688d55100 WaE: suggest a space before ';' or explicit braces around empty body in 'while' statement 2011-09-28 17:43:38 +03:00
Tor Lillqvist
2ae1b4eb99 WaE: ATSUI is deprecated in newer SDKs
So when using gcc 4.2.1, turn deprecation warnings off for most of
these source files, sigh.
2011-09-28 17:43:37 +03:00
Tor Lillqvist
63efb738e9 WaE: drop some unused variables 2011-09-28 17:43:36 +03:00
Tor Lillqvist
9db079b96b WaE: NSPICTPboardType is deprecated in 10.6 and later
So turn off -Wdeprecated-declarations for most of this source file
when using gcc 4.2.1 or later.
2011-09-28 17:43:35 +03:00
Tor Lillqvist
9943a3ff49 Fix syntax error that earlier compiler versions didn't mind 2011-09-28 17:43:34 +03:00
Tor Lillqvist
87259f9afe WaE: setAccessoryView is deprecated in 10.5 and later
Don't know how to fix it properly (i.e. use the corresponding
non-deprecated API instead), so just using the pragma to ignore that
warning for now...

Unfortunately gcc 4.2.1 doesn't seem to implement the 'GCC diagnostic
push/pop' pragmas, so we just have to ignore the warning for the
method in question and the rest of the file. But luckily it is the
last method;)
2011-09-28 17:43:33 +03:00
Tor Lillqvist
0e0393b06a WaE: 'NSWindow' may not respond to '-windowShouldClose:'
We get this warning when compiling with g++ 4.2.1 from the 10.6
SDK. As far as I see there is no command-line option to get rid of it,
and thus also no pragma to avoid it just for the lines of code in
question.

So to make it compile with -Werror also using this compiler/SDK,
expand the Objective-C message call syntactic sugar into a
objc_msgSend() call instead. That should be equivalent, shouldn't it?
2011-09-28 17:43:32 +03:00
Tor Lillqvist
82129a0d35 Fix syntax error that earlier compiler versions didn't mind 2011-09-28 17:43:31 +03:00
Tor Lillqvist
0f644656af WaE: declared with greater visibility than the type of its field
To be specific, 'vcl::PageSyncData' declared with greater visibility
than the type of its field 'vcl::PageSyncData::mActions'

Adding a SAL_DLLPRIVATE to the PageSyncData struct, too, then.

Warning was emitted by g++ 4.2.1 against the MacOSX 10.6 SDK.
2011-09-28 17:43:30 +03:00
Michael Meeks
2f3d664419 more unit test cut/paste redux 2011-09-28 15:32:14 +01:00
Michael Meeks
90a5396242 disable use of test's unoexceptionprotector for now, to break dep loop 2011-09-28 15:16:48 +01:00
Caolán McNamara
f0c8204127 regenerate list 2011-09-28 15:12:55 +01:00
Caolán McNamara
946bfb2bf8 callcatcher: another round of unused methods 2011-09-28 15:12:54 +01:00
Michael Meeks
37fd0d9884 sw: switch filters-test to the new shared unit test code 2011-09-28 15:09:49 +01:00
Michael Meeks
4b7cc85c4e sc: switch filters-test to the new shared unit test code 2011-09-28 15:09:48 +01:00
Michael Meeks
00004ec8ca add missing dependent include 2011-09-28 15:09:48 +01:00
Michael Meeks
950090c5d5 add new bootstrapfixture to share and simplify unit test code 2011-09-28 15:09:47 +01:00
Michael Meeks
3ff029819c remove obsolete include guard 2011-09-28 15:09:47 +01:00
Marc-Andre Laverdiere
706651b37f Removed unused code EnhWMFReader::ReadGDIComment() 2011-09-28 18:58:58 +05:30
Stephan Bergmann
01e0b770a5 Let SalAbort dump core on developer builds. 2011-09-28 15:24:52 +02:00
Fridrich Štrba
f973e25a92 Uploading a new release of libwps 2011-09-28 14:34:36 +02:00
Stephan Bergmann
a1a059467b Fix building moz on Mac OS X.
* On Mac, nss-config must not emit -rpath-link switch.
* --with-system-nss/-nspr horribly broke in combination with the
  routine use of MOZ_ARCH and resulting MOZ_CROSS_COMPILE for Mac,
  and the latter appears to be unnecessary for a normal build, anyway,
  so is now conditional CREATE_UNIVERSAL_MAC_MOZ_ZIP, in case anybody
  still uses the code to create universal moz archives.
* This in turn revealed two issues in moz that have been addressed
  with a new macosx_build_fix.patch.
2011-09-28 13:54:24 +02:00
Andras Timar
e34c87ce75 Uyghur LCID is 1152 not 2200 2011-09-28 13:48:11 +02:00
Andras Timar
5e61a194f1 remove obsolete fake_languagesstring() subroutine 2011-09-28 13:48:10 +02:00
Andras Timar
05293cb04c remove checks for unused BUILD_SPECIAL environment variable 2011-09-28 13:48:10 +02:00
Tor Lillqvist
d455410a3d Look at GCC version, not whether MacOSX or not 2011-09-28 13:21:36 +03:00
Caolán McNamara
a22a722ddb nothing initializes pDefaultExt anymore 2011-09-28 10:42:36 +01:00
Tor Lillqvist
e4050a653b Don't consider newer Apple compilers having "universal" byte order
I don't understand what the "universal" byte order thing tries to
say. Sure, Apple's compilers can produce fat binaries, i.e. containing
code for multiple architectures, which I guess might have differing
byte order. But I think the test for an -arch flag being present here
is backwards, surely if you specify -arch i386 for instance, then we
*know* that the byte order is little endian, not "universal".

Anyway, this broke ICU when built against MacOSX SDK 10.6 at least,
the ICU configury used wrong suffix for ICUDATA_NAME, and genbrk
failed in i18npool with a mysterious "can not initialize ICU.  status
= U_FILE_ACCESS_ERROR" message.
2011-09-28 11:41:17 +03:00
Caolán McNamara
eff6245f98 ByteString->rtl::OStringBuffer 2011-09-28 09:20:33 +01:00
Caolán McNamara
0be6fb77a7 callcatcher: another round 2011-09-28 09:20:33 +01:00
Caolán McNamara
820a569b8d ByteString->rtl::OStringBuffer 2011-09-28 09:20:33 +01:00
Caolán McNamara
5eb475f308 ByteString->rtl::OStringBuffer 2011-09-28 09:20:32 +01:00
Caolán McNamara
84841b118a callcatcher: AtomServer unused 2011-09-28 09:20:32 +01:00
Caolán McNamara
19bf1de0d4 callcatcher: unused code 2011-09-28 09:20:32 +01:00
Caolán McNamara
865ef9c448 unused ctor, and use boost::noncopyable 2011-09-28 09:20:32 +01:00
Michael Meeks
7e276c3e0f re-work XPropertyList default extension handling to increase re-use 2011-09-28 09:09:12 +01:00
David Tardon
05bee20282 we want these macros to be emtpy strings, not 1s
The substituted 1s cause i686-pc-mingw32-windres to bail out with syntax
error in solenv/inc/shlinfo.rc at line 67.
2011-09-28 08:59:53 +02:00
Takeshi Abe
199d83a44d removed dead code 2011-09-28 13:47:45 +09:00
Takeshi Abe
a80533c4a7 fix typo in message 2011-09-28 13:46:50 +09:00
Stephan Bergmann
59af654b80 Revert "Fixx FormulaCompiler build after the O[U]String[Buffer] changes"
Obsoleted by the subsequent fix to tools/string.hxx.
This reverts commit 928f7a47a1.
2011-09-27 23:28:58 +02:00
Stephan Bergmann
5c0b18ed99 Work around ambiguity introduced by previous rtl::O[U]String[Buffer] related clean up. 2011-09-27 23:27:50 +02:00
Fridrich Štrba
928f7a47a1 Fixx FormulaCompiler build after the O[U]String[Buffer] changes 2011-09-27 23:11:16 +02:00
Tor Lillqvist
2a214cc6d3 Compile also ICU for debugging if --enable-debug 2011-09-27 23:31:37 +03:00
Tor Lillqvist
82836f2815 WaE: comparison between signed and unsigned integer expressions 2011-09-27 22:48:45 +03:00
Tor Lillqvist
296823ab86 More WaE fixes for iOS 2011-09-27 22:37:48 +03:00
Stephan Bergmann
6671fa81db Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *(). 2011-09-27 20:22:03 +02:00
David Tardon
b6d8251eee move windows-only call into platform/win* 2011-09-27 20:01:49 +02:00
David Tardon
2e2dcefb5f make WinResTarget's name independent of LinkTarget 2011-09-27 20:01:48 +02:00
David Tardon
edb760e625 correct link target name should be propagated from gb_Library_add_nativeres 2011-09-27 20:01:48 +02:00
Matúš Kukan
31e7820f03 remove unused header and clean d.lst which should be empty 2011-09-27 19:41:05 +02:00