summaryrefslogtreecommitdiff
path: root/xmlhelp
AgeCommit message (Collapse)AuthorFilesLines
2012-07-02targetted improvement of UNO API includes / usageMichael Meeks2-8/+2
2012-06-27Remove unused include filesThomas Arnhold2-108/+0
Those never get included at any point in the code. Change-Id: I17736e005635b9e57759cfc95176a99e7c5e8988
2012-06-25reduce static_initialization_and_destruction chainCaolán McNamara1-4/+2
Change-Id: I0c1b2f2d908c31d1510662880c13504d81445a6a
2012-06-25Remove various commented out definesThomas Arnhold1-1/+0
Most of them in hrc files. Change-Id: I3944f6ed9befd2b498385f61b851790362221a4f
2012-06-21re-base on ALv2 code.Michael Meeks18-411/+274
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2012-06-18removed unused forward declarations of classTakeshi Abe3-9/+0
Change-Id: I32894b853912741e935e2409d2857fe384f67665
2012-06-09Remove superfluous empty lines on topThomas Arnhold1-2/+0
More than two lines are removed for readability. Change-Id: Ibff6cf68d7c512e240a54065b54a225bb23a782b
2012-06-06fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin5-29/+14
Update calls to factories to use new SimpleFileAccess::create method Change-Id: Ie5b0696fe2228a9033b19969245a53c21a61aa14 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
2012-06-01Targeted string re-work xmlhelp/xmlscriptThorsten Behrens10-186/+186
2012-05-30Re-enable sort in help-filesNiklas Johansson1-6/+0
Sorting in helpfiles were disabled due to bug #i70462#. I belive this bug isn't valid any more and we should re-activate the sorting.
2012-05-16reduce static_initialization_and_destruction chainCaolán McNamara1-2/+3
Change-Id: I962aeac0c7feeabb7963016d5afcfeca5a48ccfe
2012-05-08work around spurious signed overflow warningsMichael Stahl1-1/+2
gcc version 4.6.3 20120306 (Red Hat 4.6.3-2) (GCC): /rtl/ustring.hxx:1293:233: error: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Werror=strict-overflow]
2012-05-04fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold6-21/+21
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
2012-04-29xmlhelp is gbuild moduleDavid Tardon2-1/+0
Change-Id: I5ee788733364ecc8d63a12c8758ab3fc901ab38a
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-0/+0
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-24WaE: silence warnings from msvc2008 (again)Caolán McNamara1-0/+10
2012-04-24do not export usage of CLucene headers outside of l10ntoolsLuboš Luňák1-0/+1
that'd require CLUCENE_CFLAGS everywhere where it's used, and it's not necessary
2012-04-08gbuild: "use" vs. "add":Michael Stahl2-4/+4
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
2012-04-07bah, really deliver the filesDavid Tardon1-5/+5
2012-04-07drop executable flagDavid Tardon5-0/+0
2012-04-07install xsl files tooDavid Tardon1-0/+5
2012-04-07gbuildize xmlhelpDavid Tardon15-386/+265
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-3/+3
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-18/+18
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-04removed duplicate #includesTakeshi Abe1-1/+0
in vbahelper / writerfilter / writerperfect / xmlhelp / xmloff / xmlscript / xmlsecurity
2012-03-23.component files don't need executable bitsMichael Stahl2-0/+0
2012-03-21chmod -xTor Lillqvist3-0/+0
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann1-1/+2
...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-09minor documentation tweaksMichael Meeks1-1/+1
2012-02-23remove all other deprecated header guardsThomas Arnhold4-16/+0
2012-02-23reduce try-catch CLuceneError blockCaolán McNamara1-8/+9
2012-02-23not every extension's help will have help in all langs, catch that exceptionCaolán McNamara2-3/+11
2012-02-23ditch archaic headerguardsCaolán McNamara1-8/+0
2012-02-23just link to HelpIndexerCaolán McNamara5-270/+1
2012-02-23tweak for cross-platformityCaolán McNamara2-19/+17
2012-02-23use different OUString ctor for RTL_TEXTENCODING_UCS4Caolán McNamara3-9/+4
2012-02-23HelpIndexer and HelpSearch: remove JavaGert van Valkenhoef7-762/+0
2012-02-23Bugfix resultsetforqueryGert van Valkenhoef1-5/+4
2012-02-23Add C++ HelpSearch and call from XMLHelp. Fix string conversion bug.Gert van Valkenhoef3-188/+139
2012-02-23tweak buildCaolán McNamara3-3/+2
2012-02-23HelpIndexer using rtl::OUString, called from xmlhelpGert van Valkenhoef2-57/+50
2012-02-23bootstrap replacement c++ help componentCaolán McNamara7-6/+272
2012-02-17fdo#40665 use CJKAnalyzer for ko, zh-CN, and zh-TW, tooAndras Timar1-1/+4
2012-02-08Added READMEs for modules which used to be in libs-coreJosh Heidenreich1-0/+1
2012-01-24Fix for fdo43460 Part XLVI getLength() to isEmpty()Olivier Hallot8-45/+42
Part XLVI Modules xmlhelp
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2-2/+2
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers.
2012-01-16There is nothing to build in xmlhelp/incTor Lillqvist2-46/+5
2011-12-11I don't see NO_BSYMBOLIC being used anywhereTor Lillqvist3-3/+0
2011-12-08childs -> childrenMichael T. Whiteley1-10/+10
2011-12-06remove unused members, sablot went away a long time agoCaolán McNamara2-7/+1