summaryrefslogtreecommitdiff
path: root/vcl/aqua
AgeCommit message (Collapse)Author
2012-01-16vcl: introduce crystal clear separation between X11 Screens and DisplayScreensMichael Meeks
A DisplayScreen is a screen index as used by the upper level abstractions, an X11Screen is a wrapper around an integer X screen index.
2012-01-15vcl: rename methods to crisp up a 'DisplayScreen' naming conceptMichael Meeks
2012-01-15vcl: rename ambiguous IsMultiDisplay to IsUnifiedDisplay, and simplifyMichael Meeks
2012-01-10Use SAL_N_ELEMENTSThomas Arnhold
Some more like Thorstens diff 9c59cd15b150638c845bbc275b9b04460afc23bd Done with some regex magic (and a check if this var is an array): s/sizeof\(\s*$var\s*\)\s*\/\s*sizeof\(\s*\*$var\s*/SAL_N_ELEMENTS\($var/gs
2012-01-09catch exception by constant referenceTakeshi Abe
2012-01-08catch exception by constant referenceTakeshi Abe
2012-01-06Fix fdo#33816 - don't loop infinitely when using Apple RemoteThorsten Behrens
Removed erratic loop condition - we simply want to check if any frame has fullscreen flag set.
2012-01-05Removed unnecessary tools includes.Marcel Metz
2011-12-22use officecfg/Office/Common.hxx directlyDavid Tardon
2011-12-15Removed extra semicolonsJesse
2011-12-14Adapted Mac-only code to ByteString reduction.Stephan Bergmann
2011-12-14Adapted Mac-only code to ByteString reduction.Stephan Bergmann
2011-12-05possible fix for build breakerMarkus Mohrhard
2011-12-05bah, wrong file extension...David Tardon
2011-12-05fix build on macosxDavid Tardon
2011-12-05move the check function to vclDavid Tardon
Other plugins may want to use it too.
2011-12-01Fix build in macosxAugust Sodora
2011-11-27remove include of pch header from vclNorbert Thiebaud
2011-11-25gsl_getSystemTextEncoding -> osl_getThreadTextEncodingDavid Tardon
2011-11-21fix build on MacOS XDavid Tardon
2011-11-21convert aqua plugin to rtl::O(U)StringDavid Tardon
2011-11-19remove [Byte]String::EraseAllCharsCaolán McNamara
2011-11-07redundant if not-null checks on deleteThomas Arnhold
2011-11-04Further clean up of areas touched by previous commit.Stephan Bergmann
2011-11-04String->OUString, remove unused codeAugust Sodora
2011-10-27Rename ImplFontSelectData to FontSelectPattern so I know what it doesCaolán McNamara
Rename ImplFontSelectData to FontSelectPattern because I can never remember the name of the thing. This way I'll be able to remember that its basically the equivalent of fontconfig's FcPattern
2011-10-25Fix for fdo41997 continuation of VCL cleanupOlivier Hallot
2011-10-24SystemFlavor NSStrings should not be constKristian Rietveld
2011-10-21Fix for bug fdo#41997, cleanup vcl enumerationOlivier Hallot
2011-10-07Undo basis/brand split: merge basis share/ into brand share/.Stephan Bergmann
2011-10-07Revert "cppcheck scope reduction in vcl/..salatsuifontutils.cxx"Pierre-André Jacquod
This reverts commit e45b962f49829d5c60c913383b2132b579af3fab. this is the most probale cause of the breakage on MacOSX tinderbox. Do not really understand why it should break, but I do not see other potential guilty commits... No MacOSX at hand... so revert and see
2011-10-07cppcheck scope reduction in vcl/..salatsuifontutils.cxxPierre-André Jacquod
2011-10-04Fix build against the 10.4 SDKTor Lillqvist
2011-10-03Workaround for building against MacOSX 10.6 SDK but with 10.4 as the highest ↵Tor Lillqvist
used API
2011-09-28Make deprecation warnings non-fatal even in a -Werror compilationTor Lillqvist
2011-09-28WaE: foo does not implement the fooDelegate protocolTor Lillqvist
2011-09-28WaE: suggest a space before ';' or explicit braces around empty body in ↵Tor Lillqvist
'while' statement
2011-09-28WaE: ATSUI is deprecated in newer SDKsTor Lillqvist
So when using gcc 4.2.1, turn deprecation warnings off for most of these source files, sigh.
2011-09-28WaE: drop some unused variablesTor Lillqvist
2011-09-28WaE: NSPICTPboardType is deprecated in 10.6 and laterTor Lillqvist
So turn off -Wdeprecated-declarations for most of this source file when using gcc 4.2.1 or later.
2011-09-28Fix syntax error that earlier compiler versions didn't mindTor Lillqvist
2011-09-28WaE: setAccessoryView is deprecated in 10.5 and laterTor Lillqvist
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-28WaE: 'NSWindow' may not respond to '-windowShouldClose:'Tor Lillqvist
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-28Fix syntax error that earlier compiler versions didn't mindTor Lillqvist
2011-09-28Let SalAbort dump core on developer builds.Stephan Bergmann
2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
2011-09-08I'm going to agree with Julien that this is wrong.Joseph Powers
See ML history for details: Message-ID: <1315514308476-3321065.post@n3.nabble.com>
2011-08-24potential WaECaolán McNamara
2011-08-24catch ignored exceptions by const referenceTakeshi Abe
2011-07-21resyncing to masterBjoern Michaelsen