summaryrefslogtreecommitdiff
path: root/extensions
AgeCommit message (Collapse)Author
2011-11-16tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud
This allow to run make in a module wihtout the need to source Env.Host.sh.
2011-11-15Removed obsolete OOOBASEVERSION, OOOPACKAGEVERSION.Stephan Bergmann
With the basis/brand split undone, they are always the same as PRODUCTVERSION and ABOUTBOXPRODUCTVERSION, respectively.
2011-11-14Simplified some uses of css.configuration.theDefaultProvider.Stephan Bergmann
* Retro-added new-style UNOIDL singleton specification for it, for easy instantiation. * Plus new comphelper::getComponentContext to map from XMultiServiceFactory to XComponentContext.
2011-11-14Removed comphelper -> unotools processfactory.hxx duplication.Stephan Bergmann
2011-11-11Add nsplugin switch so we dont bind nsplugin building to gtk switch.Tomas Chvatal
2011-11-09Getting completely rid of the int32 and whateverFridrich Štrba
2011-11-08int16/32 ->int16/32_t fall-out of new npapi.hNorbert Thiebaud
2011-11-08Fix WaE variable ‘eUIState’ set but not usedJulien Nabet
2011-11-08fix build against new npapi.h (yet more), blind fixes for aqua tooMichael Meeks
2011-11-08Fix Windows build of extensionsFridrich Strba
2011-11-08fix build against new npapi.h (some more)Michael Meeks
2011-11-08fix build against new npapi.hCaolán McNamara
2011-11-08fix build: (u)int16 -> (u)int16_tRene Engelhard
2011-11-08add actual $(MOZILLA_HEADERS_CFLAGS) to extensions' buildRene Engelhard
2011-11-07make extensions ByteString freeCaolán McNamara
2011-11-06ByteString->rtl::OStringCaolán McNamara
2011-10-27Copy-pasted workaround for building against MacOSX 10.6 SDK but with 10.4 as ↵Tor Lillqvist
the highest used API Yeah, should really factor out this snippet into some header file. It is already in premac.h, but I think premac.h can't be included as such in all the places where this copy-pasted snippet now is. Need to experiment.
2011-10-26fix handling of SAFEARRAY(s) returned as variant in olebridge (fdo#38441)Noel Power
2011-10-25WaE: unused variablesCaolán McNamara
2011-10-25WaE: silence a warningCaolán McNamara
2011-10-24Undo basis/brand split: removed RPATH BRAND (same as OOO now).Stephan Bergmann
2011-10-24Fixed Windows-only code broken by recent commit.Stephan Bergmann
2011-10-24Undo basis/brand split: Move SDK and ure-link, remove OOO_BASE_DIR and ↵Stephan Bergmann
BaseInstallation.
2011-10-24Undo basis/brand split: moved pluginapp.bin from basis to brand.Stephan Bergmann
2011-10-24Undo basis/brand split: moved nsplugin from basis to brand.Stephan Bergmann
2011-10-22Make the update unit test compile.Jan Holesovsky
It is not useful yet, so disabled.
2011-10-20Added a scanbutton to the scan-dialogRob Snelders
2011-10-20Undo basis/brand split: moved ini files from basis program/ to brand program/.Stephan Bergmann
Moved uno ini, folded fundamentalbasis ini into fundamental ini, merged version inis.
2011-10-17expedient fix to get test-suite auto executedCaolán McNamara
2011-10-17Skeleton of the unit test for updates.Jan Holesovsky
2011-10-10So just drop the duplicate XInvocation base class thenNoel Power
2011-10-10WaE: unreachable codeTor Lillqvist
2011-10-10WaE: C4584: foo is already a base-class of barTor Lillqvist
'cppu::WeakImplHelper8<Ifc1,Ifc2,Ifc3,Ifc4,Ifc5,Ifc6,Ifc7,Ifc8>' : base-class 'com::sun::star::script::XInvocation' is already a base-class of 'com::sun::star::script::XAutomationInvocation' So ignore that warning. No idea if the duplicate base class XInvocation is intentional or not, and I certainly won't dare touch it. I guess the existing pragma to ignore warning C4548 was a typo, and what was intended was this warning, C4584.
2011-10-10WaE: unreachable codeTor Lillqvist
2011-10-10WaE: unreferenced local variableTor Lillqvist
2011-10-07cppcheck scope reduction of var in extensions/...Basic.cppPierre-André Jacquod
2011-10-07cppcheck reduce scope of var in extensions/...sane.cxxPierre-André Jacquod
2011-10-07cppcheck reduce scope of var in extensions/..so_activex.cppPierre-André Jacquod
2011-10-05fix compilation after the recent OUString::operator char*() removalLuboš Luňák
2011-10-03do not include removed headerMatúš Kukan
2011-10-02do not use COMPHELPER_SERVICEDECL_EXPORTS macroMatúš Kukan
2011-09-30add mode-lines to .m files and last round of merged files, etc.Caolán McNamara
2011-09-30get this building with gcc 4.6.1Caolán McNamara
2011-09-29WaE: avoid warningsTor Lillqvist
2011-09-27Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *().Stephan Bergmann
2011-09-26ByteString->rtl::OStringBufferCaolán McNamara
2011-09-26Fixed DBG_ASSERT broken by recent commit.Stephan Bergmann
2011-09-24re-factor XPropertyList derivatives to use a rtl::ReferenceMichael Meeks
This cleans up a lot of lifecycle nasties and cleans up some serious cut/paste code duplication issues at the same time. Cleanup the naming of ColorTable -> ColorList to match the impl. too
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara
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