summaryrefslogtreecommitdiff
path: root/forms
AgeCommit message (Collapse)AuthorFilesLines
2012-04-16mingw: avoid weird build error and -WerrorDavid Tardon1-1/+2
The error message is: "'*((void*)& aBoundColumn +2)' may be used uninitialized in this function" using gcc 4.7.0 in gnu++11 mode and boost 1.48.0 .
2012-04-09add package deps for resourcesDavid Tardon1-0/+4
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi1-2/+2
2012-04-08gbuild: "use" vs. "add":Michael Stahl3-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-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi4-11/+5
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-2/+2
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2-4/+4
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara1-1/+1
2012-03-21chmod -xTor Lillqvist1-0/+0
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann8-0/+26
...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-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2-3/+3
2012-03-07Translate German commentsPhilipp Weissenbacher3-24/+21
2012-03-06Translate German comments, fix some whitespace and bad translationsPhilipp Weissenbacher12-91/+86
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann2-2/+2
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-23Adapted AsyncEventNotifier to safer-to-use salhelper::ThreadStephan Bergmann3-4/+10
2012-02-21Fix most of the build with --disable-database-connectivityRiccardo Magliocchetti1-0/+2
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2-2/+2
2012-02-19Get rid of size() == 0Elton Chung1-1/+1
2012-02-18Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe4-14/+17
to equalsIgnoreAsciiCaseAscii("...")
2012-02-16Forgotten German word in translated commentLionel Elie Mamane1-1/+1
2012-02-16fdo#46163 convert bound values to bound column's typeLionel Elie Mamane2-14/+67
2012-02-16correct indentationLionel Elie Mamane1-3/+3
2012-02-16Translate German commentsPhilipp Weissenbacher2-91/+82
2012-02-10fdo#39491 more of unnecessary include pathsMatúš Kukan1-1/+0
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan2-2/+0
2012-02-08Added READMEs for modules which used to be in componentsJosh Heidenreich1-0/+1
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-01-30refactor ConvertLineEndCaolán McNamara1-4/+1
2012-01-15WaE: deleting object of abstract class type with non-virtual destructorDavid Tardon2-0/+5
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz5-8/+1
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz4-2/+2
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2012-01-05Removed unnecessary tools includes.Marcel Metz1-0/+1
2012-01-05Removed unnecessary tools includes.Marcel Metz3-6/+0
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-02Temporary hack around cppu_detail_getCppuType variants violating ODR.Stephan Bergmann1-1/+1
Which causes cppuhelper to pick wrong variant from other library, now that its own symbols are no longer reduced to private on Mac OS X. As a temporary hack, emit cppu_detail_getCppuType for the relevant types always as fully comprehensive; should be revisited when improving types.rdb format (routinely generating C++ information for certain UNO types into a dedicated library?). Requires a fix to xmlreader and a fix to forms that looks like a Mac OS X GCC bug.
2011-12-30build qadevOOo only if OOO_JUNIT_JAR are set (add BUILD_TYPE)Rene Engelhard1-1/+1
2011-12-30Fix for fdo43460 Part XVIII getLength() to isEmpty()Gustavo Buzzatti Pacheco29-111/+111
Part XVIII module form
2011-12-15Removed extra semicolonsJesse1-1/+1
2011-12-12WaE: NULL used in arithmeticTor Lillqvist1-1/+1
2011-12-12catch exception by constant referenceTakeshi Abe19-34/+33
2011-12-08childs -> childrenMichael T. Whiteley3-3/+3
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-06normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara3-15/+12
2011-12-01get rid of class Date and Time default ctor with system time penaltyEike Rathke1-3/+3
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-427/+0
2011-11-27remove pch from the include listNorbert Thiebaud1-1/+0
2011-11-27remove include of pch header from formsNorbert Thiebaud102-202/+0
2011-11-27remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud1-2/+0
2011-11-26Remove some uses of OUString::setCharAtAugust Sodora1-1/+1