summaryrefslogtreecommitdiff
path: root/vcl
AgeCommit message (Collapse)Author
2011-10-05fix also older gtk+ buildFridrich Štrba
2011-10-05conversion operator gone nowCaolán McNamara
2011-10-05callcatcher: unused methodsCaolán McNamara
2011-10-05simplfy dmake to gbuild bridgefileBjoern Michaelsen
2011-10-04WaE: unreachable codeTor Lillqvist
2011-10-04WaE: 'e' : unreferenced local variableTor Lillqvist
2011-10-04Fix build against the 10.4 SDKTor Lillqvist
2011-10-04callcatcher: various unused methodsCaolán McNamara
2011-10-03Workaround for building against MacOSX 10.6 SDK but with 10.4 as the highest ↵Tor Lillqvist
used API
2011-10-03Print preview: set frame size to preview size even if there is no previewIvan Timofeev
2011-09-30Kill unused SalFrameWndProcA() functionTor Lillqvist
2011-09-30Kill unused ImplSalUpdateStyleFontA() functionTor Lillqvist
2011-09-30clean-up ghost traces of unicowNorbert Thiebaud
2011-09-30help gcc 4.6.1 out with ambiguityCaolán McNamara
2011-09-29Fix MinGW runtime; we need only the DLLPOSTFIX, no other magic.Jan Holesovsky
2011-09-29callcatcher: unused codeCaolán McNamara
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-28WaE: declared with greater visibility than the type of its fieldTor Lillqvist
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-28Let SalAbort dump core on developer builds.Stephan Bergmann
2011-09-28ByteString->rtl::OStringBufferCaolán McNamara
2011-09-27More WaE fixes for iOSTor Lillqvist
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann
2011-09-27make WinResTarget's name independent of LinkTargetDavid Tardon
2011-09-27add GetParentDialog to VCL's Window, and remove DLGWIN & cut/pasteMichael Meeks
2011-09-27WaE: Silence warnings for the iOS codeTor Lillqvist
No semantic changes, the iOS code still is mostly dummy.
2011-09-26cppcheck: reduce scope of var in vcl bitmap3.cxxPierre-André Jacquod
2011-09-26cppcheck: reduce scope of var in vcl sft.cxxPierre-André Jacquod
2011-09-26cppcheck: reduce scope of variabl.e in vcl, cff.cxxPierre-André Jacquod
2011-09-26dead code deleted in vcl toolbox.cxxPierre-André Jacquod
2011-09-26cppcheck: reduce scope of var in vcl toolbox.cxxPierre-André Jacquod
2011-09-26cppcheck: scope reduction of var in vcl outdev3.cxxPierre-André Jacquod
and deletion of a varialbe used as constant since 2002
2011-09-26cppcheck: reduce scope of var in vcl outdev2.cxxPierre-André Jacquod
2011-09-24unusedcode: vcl::PrinterFooMatúš Kukan
2011-09-22WaE: signed/unsigned errorCaolán McNamara
2011-09-22Upgrade graphite to 1.0.3 fix surrogate supportMartin Hosken
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara
2011-09-22Always link with user32Tor Lillqvist
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-20ByteString->rtl::OString[Buffer]Caolán McNamara
2011-09-20ByteString->rtl::OStringBufferCaolán McNamara
2011-09-20WaE: and no longer need this here thenCaolán McNamara