summaryrefslogtreecommitdiff
path: root/extensions
AgeCommit message (Collapse)Author
2012-03-23Hop, a logical errorFridrich Štrba
2012-03-23Move spotlight plugin out of minizipFridrich Štrba
2012-03-20reduce UniStringsCaolán McNamara
2012-03-19remove fiddly casts, add few const where appropriateLuboš Luňák
2012-03-16logical || -> binary |Luboš Luňák
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
2012-03-12extensions: split out static library from npsopluginMichael Stahl
2012-03-12extensions: split out static library for X11 plugin connection stuffMichael Stahl
2012-03-12Fix WITH_OPENLDAP caseStephan Bergmann
2012-03-10extensions: export npsoplugin's symbolsMatúš Kukan
2012-03-09Fix tools->bibliography database, brown paper bag over head commit :-)Caolán McNamara
2012-03-09fdo#46847 fix build of so_activex.rcAndras Timar
Use \ instead of / in path, but more importantly, use relative path, because '-' in path caused build error. Path was truncated right before the '-'. We could have put it between quotes, but then the SO_ACTIVEX_TLB_DIR define would not be substituted, so instead of hacking of the rc, I chose this solution. e
2012-03-07Use just one resource file for npsopluginTor Lillqvist
2012-03-06lp#527938, debian#602953, fdo#33266, i#105408: do not crash on clicking ↵Bjoern Michaelsen
bibliography when base isnt installed
2012-03-05fix pathDavid Tardon
2012-03-04fdo#46847 use windows style path for midl.exeAndras Timar
2012-03-04fdo#46847 typo in midl command lineAndras Timar
2012-03-04fix building of so_activex (fdo#46847)David Tardon
2012-03-04use custom target for copying sourcesDavid Tardon
2012-03-03build nsplugin also without mozilla as in 3-5 branchMatúš Kukan
2012-03-02fdo#46501: Cleanup SimpleResMgrSzabolcs Dezsi
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-29fix nsplugin to create correct com.sun.star.ucb.SimpleFileAccess instanceRene Engelhard
2012-02-23default conversion of sequences is now again SAFEARRAY of VARIANTs #fdo46165Joachim Lingner
cws jl166 patch: #i117010# default conversion of sequences is now again SAFEARRAY of VARIANTs
2012-02-23Revert "fix handling of SAFEARRAY(s) returned as variant in olebridge ↵Noel Power
(fdo#38441)" This reverts commit 3fcb94311fd7dd40c05ca132e3a30a888316cbbe.
2012-02-23Adapted AsyncEventNotifier to safer-to-use salhelper::ThreadStephan Bergmann
2012-02-21build also with older npapiLuboš Luňák
They were apparently lame enough to make a source-incompatible change without changing API version or anything similar.
2012-02-21Fix most of the build with --disable-database-connectivityRiccardo Magliocchetti
2012-02-19Get rid of size() == 0Elton Chung
2012-02-18Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe
to equalsIgnoreAsciiCaseAscii("...")
2012-02-18Fix typos in commentsElton Chung
2012-02-18Use gb_STDLIBS; No on-line update on non-desktop OSesTor Lillqvist
2012-02-17Remove unused code.Petr Vorel
2012-02-17char* -> const char* for npapis getMIMEDescription to fix build with newer mozsRene Engelhard
2012-02-17remove extraneous qualifiers that break some compilersMariusz Dykierek
2012-02-17these can be compiled with exceptions enabledCaolán McNamara
2012-02-16Translate German commentsPhilipp Weissenbacher
2012-02-15WaE: member initialization orderCaolán McNamara
2012-02-15Various string function clean upStephan Bergmann
Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
2012-02-13fdo#43399 hidden radio button should also gets unsetLionel Elie Mamane
2012-02-13extensions: plugin: UNX: don't crash headlessMichael Stahl
2012-02-13extensions: plugin: assertion from OUString::copyMichael Stahl
2012-02-11Fix cppcheck warning same expression on both sides of '|'Julien Nabet
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan
2012-02-10fdo#40261: Fix crash in XML Form Document.Jan Holesovsky
The data structure holding the UI elements in the browser listbox was a terrible mess - it held the items in an unordered_map, but then accessed them via a vector containing iterators to this unordered_map. Fixed the problem (and cleaned all this up) by removing the vector of iterators, and turning the unordered_map into a normal vector. When we need access by name, we just go through all the items; it is always just a handful of them anyway.
2012-02-08Added READMEs for modules which used to be in componentsJosh Heidenreich
2012-02-06Fixed some cppcheck messagesPKEuS
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2012-02-01Some cppcheck cleaningJulien Nabet