summaryrefslogtreecommitdiff
path: root/extensions
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi3-12/+8
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi3-5/+5
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05Clean up optional online update moduleStephan Bergmann1-1/+6
* The updatecheckui lib is part of that module; should its scp entry also be marked ComponentCondition="ISCHECKFORPRODUCTUPDATES=1"? * unpack_update (and other scripts as well?) need only be generated if ENABLE_ONLINE_UPDATE. * It is inconsistent that there is a distinct onlineupdate.xcd not merged into main.xcd, while the updchk and updatecheckui component files are merged into the global services.rdb. * The updchk res file should also go into (a resource sub-module of) the optional online update module.
2012-04-05UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara3-4/+4
2012-04-04fix so_activex_idl, part twoMatúš Kukan1-1/+1
The order seems to be important here. However it has worked for me and I am not sure this will fix tinderboxes.
2012-04-04fix so_activex_idl, part oneMatúš Kukan2-7/+5
2012-04-04extensions: use CustomTarget makefilesMatúš Kukan8-110/+29
2012-04-02always pass --headless to cppunitsLuboš Luňák1-1/+0
They should not need any actual UI anyway, and most of them already pass the option manually. http://lists.freedesktop.org/archives/libreoffice/2012-March/029109.html
2012-03-23Hop, a logical errorFridrich Štrba1-1/+1
2012-03-23Move spotlight plugin out of minizipFridrich Štrba7-2363/+317
2012-03-20reduce UniStringsCaolán McNamara3-12/+14
2012-03-19remove fiddly casts, add few const where appropriateLuboš Luňák1-8/+7
2012-03-16logical || -> binary |Luboš Luňák1-1/+1
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann1-1/+1
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann10-0/+30
...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 Stahl4-2/+40
2012-03-12extensions: split out static library for X11 plugin connection stuffMichael Stahl4-4/+84
2012-03-12Fix WITH_OPENLDAP caseStephan Bergmann1-12/+14
2012-03-10extensions: export npsoplugin's symbolsMatúš Kukan2-18/+46
2012-03-09Fix tools->bibliography database, brown paper bag over head commit :-)Caolán McNamara1-1/+1
2012-03-09fdo#46847 fix build of so_activex.rcAndras Timar1-1/+1
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 Lillqvist1-1/+5
2012-03-06lp#527938, debian#602953, fdo#33266, i#105408: do not crash on clicking ↵Bjoern Michaelsen1-1/+16
bibliography when base isnt installed
2012-03-05fix pathDavid Tardon1-1/+1
2012-03-04fdo#46847 use windows style path for midl.exeAndras Timar1-0/+3
2012-03-04fdo#46847 typo in midl command lineAndras Timar1-1/+1
2012-03-04fix building of so_activex (fdo#46847)David Tardon7-20/+97
2012-03-04use custom target for copying sourcesDavid Tardon4-5/+87
2012-03-03build nsplugin also without mozilla as in 3-5 branchMatúš Kukan2-8/+54
2012-03-02fdo#46501: Cleanup SimpleResMgrSzabolcs Dezsi1-1/+1
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann10-20/+20
...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 Engelhard1-1/+1
2012-02-23default conversion of sequences is now again SAFEARRAY of VARIANTs #fdo46165Joachim Lingner1-33/+18
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 Power1-8/+8
(fdo#38441)" This reverts commit 3fcb94311fd7dd40c05ca132e3a30a888316cbbe.
2012-02-23Adapted AsyncEventNotifier to safer-to-use salhelper::ThreadStephan Bergmann3-3/+9
2012-02-21build also with older npapiLuboš Luňák2-1/+10
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 Magliocchetti1-6/+11
2012-02-19Get rid of size() == 0Elton Chung1-1/+1
2012-02-18Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe1-1/+1
to equalsIgnoreAsciiCaseAscii("...")
2012-02-18Fix typos in commentsElton Chung1-1/+1
2012-02-18Use gb_STDLIBS; No on-line update on non-desktop OSesTor Lillqvist6-8/+18
2012-02-17Remove unused code.Petr Vorel2-20/+0
2012-02-17char* -> const char* for npapis getMIMEDescription to fix build with newer mozsRene Engelhard1-1/+1
2012-02-17remove extraneous qualifiers that break some compilersMariusz Dykierek2-3/+3
2012-02-17these can be compiled with exceptions enabledCaolán McNamara1-5/+2
2012-02-16Translate German commentsPhilipp Weissenbacher1-3/+3
2012-02-15WaE: member initialization orderCaolán McNamara1-2/+2
2012-02-15Various string function clean upStephan Bergmann1-6/+3
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 Mamane1-7/+5
2012-02-13extensions: plugin: UNX: don't crash headlessMichael Stahl1-3/+13