summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-09-29ByteString->rtl::OStringCaolán McNamara
2011-09-29add modelinesCaolán McNamara
2011-09-29remove archaic header guardsCaolán McNamara
2011-09-29ByteString->rtl::OStringBufferCaolán McNamara
2011-09-29why use a pointer when a reference will doCaolán McNamara
2011-09-29ByteString->rtl::OStringCaolán McNamara
2011-09-29ByteString->rtl::OString[Buffer}Caolán McNamara
2011-09-29callcatcher: unused codeCaolán McNamara
2011-09-29WaE: Mark SvXMLExport_Impl and SvXMLImport_Impl as SAL_DLLPRIVATETor Lillqvist
Fixes warnings: 'SvXML*_Impl' declared with greater visibility than the type of its field 'SvXMLExport_Impl::mpRDFaHelper'.
2011-09-29Don't build l10ntools for non-desktop OSesTor Lillqvist
2011-09-29Use NSString's UTF8String method instead of the deprecated cStringTor Lillqvist
2011-09-29Replace SvULongs with std::vector in sfx2Maciej Rumianowski
Bug 38831, replace SvULongs with std::vector in sfx2 and related svtools
2011-09-29Replace SvULongs and SVUShorts with std::vectorMaciej Rumianowski
Replace SvULongs with std::vector<sal_uIntPtr> and SvUShorts with std::vector<sal_uInt16>
2011-09-29filters: Updating js2hxx.py to python3Hugo Beauzée-Luyssen
2011-09-29next test -> unotest changeMarkus Mohrhard
2011-09-29WaE: 'fileAttributesAtPath:traverseLink:' is deprecatedTor Lillqvist
2011-09-29Add mode linesTor Lillqvist
2011-09-29WaE: class 'AquaFilePickerDelegate' does not implement the ↵Tor Lillqvist
'NSOpenSavePanelDelegate' protocol
2011-09-29Avoid "jump to case label crosses initialization" errors with gcc 4.2.1Tor Lillqvist
Reduce scope of variables declared inside a switch statement. OK, so make those code snippets into blocks then, to reduce the scope of those variables. Workaround for weird errors as reported by gcc 4.2.1 in the 10.6 SDK: SalAquaPicker.cxx: In member function 'void SalAquaPicker::implInitialize()': SalAquaPicker.cxx:134: error: jump to case label SalAquaPicker.cxx:127: error: crosses initialization of 'NSNumber* pExtn' SalAquaPicker.cxx:126: error: crosses initialization of 'NSUserDefaults* pDefaults' SalAquaPicker.cxx:141: error: jump to case label SalAquaPicker.cxx:127: error: crosses initialization of 'NSNumber* pExtn' SalAquaPicker.cxx:126: error: crosses initialization of 'NSUserDefaults* pDefaults'
2011-09-28fix another unotest/test breakerMarkus Mohrhard
2011-09-28adapt make dev-install to unotest changesMarkus Mohrhard
2011-09-29This was what I meant, sorry for thinkoTor Lillqvist
2011-09-28target 'all' should be the first one to make it the default one.Norbert Thiebaud
2011-09-28Add mode lines and detabifyTor Lillqvist
2011-09-28WaE: class 'RecentMenuDelegate' does not implement the 'NSMenuDelegate' protocolTor Lillqvist
2011-09-28Mark SfxStandaloneDocumentInfoObject as SAL_DLLPRIVATETor Lillqvist
Fixes warnings 'SfxStandaloneDocumentInfoObject' declared with greater visibility than the type of its field 'SfxStandaloneDocumentInfoObject::<anonymous>' and 'SfxStandaloneDocumentInfoObject' declared with greater visibility than its base 'SfxDocumentInfoO\ bject'.
2011-09-28make configure check for cpp/poppler-version.hRene Engelhard
2011-09-28WaE: base class should be explicitly initialized in the copy constructorTor Lillqvist
2011-09-28install testdllapi.h correctlyMichael Meeks
2011-09-28Rename and re-factor test and unotest to compile and run againMichael Meeks
2011-09-28split 'test' into 'unotest' and 'test' to help dependenciesMichael Meeks
2011-09-28text can be const nowCaolán McNamara
2011-09-28Android now builds up to instsetoo_nativeThorsten Behrens
Last fixes - remove kludge from RepositoryFixes.mk, have redland build w/o threads for the while, and some hackery to exclude pointless code like oosplash from android build.
2011-09-28Make deprecation warnings non-fatal even in a -Werror compilationTor Lillqvist
2011-09-28Define LIBO_WERROR when warnings are errorsTor 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-28more unit test cut/paste reduxMichael Meeks
2011-09-28disable use of test's unoexceptionprotector for now, to break dep loopMichael Meeks
2011-09-28regenerate listCaolán McNamara
2011-09-28callcatcher: another round of unused methodsCaolán McNamara
2011-09-28sw: switch filters-test to the new shared unit test codeMichael Meeks