summaryrefslogtreecommitdiffstats
path: root/dbaccess
Commit message (Collapse)AuthorAgeFilesLines
* gbuild: "use" vs. "add":Michael Stahl2012-04-0810-22/+22
| | | | | | | | | 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)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0616-32/+22
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-067-19/+19
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0612-36/+36
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-1/+1
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
* removed unused definesTakeshi Abe2012-04-053-19/+0
|
* Translate German commentsPhilipp Weissenbacher2012-04-021-15/+15
|
* remove static objects from static_initialization_and_destruction chainCaolán McNamara2012-04-022-5/+9
|
* always pass --headless to cppunitsLuboš Luňák2012-04-021-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
* removed duplicate includes in dbaccessTakeshi Abe2012-03-3052-78/+0
|
* ditch some UniStrings and intermediate temporariesCaolán McNamara2012-03-261-3/+3
|
* .hrc files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .java files don't need executable bitsMichael Stahl2012-03-234-0/+0
|
* chmod -xTor Lillqvist2012-03-212-0/+0
|
* remove extra string castsCaolán McNamara2012-03-204-9/+8
|
* fdo#47560 properly separate each new sorting columnLionel Elie Mamane2012-03-201-1/+1
|
* fdo#47370 properly duplicate (invisible) out-of-order sort columnsLionel Elie Mamane2012-03-202-2/+11
| | | | Keep track of position of previous sorting column and use it to decide whether to duplicate invisible new sort column
* do not initialize a field with itselfLuboš Luňák2012-03-161-1/+1
|
* fixup: use introduced preprocessor constant instead of hardcoded constantLionel Elie Mamane2012-03-151-2/+2
|
* fdo#46843 look for order by clause as fifth child of select_statementLionel Elie Mamane2012-03-151-2/+2
| | | | Since commit 33b9b857ea6cb5a6f731de68f58e532242c43d30 (dba34c: #i20306# support for window function and limit fetch first, ... added), order by is the fifth child. It was the fourth one before.
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-1419-0/+69
| | | | | | | | | | | | | | ...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.
* Clean up ODocumentInfoPreviewStephan Bergmann2012-03-131-1/+1
|
* replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák2012-03-125-25/+12
|
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-1010-19/+19
|
* fdo#47021: the naive join attempt leads to deadlockStephan Bergmann2012-03-091-1/+6
| | | | ...something better is required (getting rid of the solar mutex?).
* Sprinkle more DISABLE_SCRIPTING ifdefsTor Lillqvist2012-03-051-0/+11
|
* WNT-only IMPL_LINK_NOARG fixesStephan Bergmann2012-03-021-1/+1
|
* New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann2012-03-0120-38/+38
| | | | | ...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
* we don't want any of these to be streamed out/in as 64bit valuesCaolán McNamara2012-02-281-2/+2
|
* Adapted AsyncEventNotifier to safer-to-use salhelper::ThreadStephan Bergmann2012-02-231-4/+5
|
* OUString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák2012-02-221-1/+1
| | | | http://lists.freedesktop.org/archives/libreoffice/2012-February/025662.html
* WaE: duplicateBranchThomas Arnhold2012-02-211-4/+0
|
* Remove unused codeElton Chung2012-02-202-22/+0
|
* gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2012-02-202-2/+2
|
* remove adabas/adabasuiCaolán McNamara2012-02-1964-4689/+32
|
* Get rid of size() == 0Elton Chung2012-02-192-2/+2
|
* Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe2012-02-181-1/+1
| | | | to equalsIgnoreAsciiCaseAscii("...")
* Fix typos in commentsElton Chung2012-02-181-1/+1
|
* Make sure spawned thread is joined againStephan Bergmann2012-02-161-0/+1
| | | | ...otherwise, it might still run during exit(3) and cause problems.
* dbaccess' macros_test is still failing in some situationsMarkus Mohrhard2012-02-161-1/+5
|
* Various string function clean upStephan Bergmann2012-02-156-65/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Fix typos in commentsElton Chung2012-02-134-5/+5
|
* disable new test on win and mac since it is a test with UIMarkus Mohrhard2012-02-121-0/+2
|
* finish initial work on the Base testMarkus Mohrhard2012-02-122-0/+5
| | | | Base needs the numberformatter to initialize a document
* use better assertion macrosMarkus Mohrhard2012-02-121-1/+1
|
* first part of a c++ based test for baseMarkus Mohrhard2012-02-113-0/+254
|
* fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan2012-02-1012-12/+0
|
* dbaccess: DatabaseDataProvider is not in chart2Miklos Vajna2012-02-102-2/+2
|
* translate german commentsLionel Elie Mamane2012-02-091-4/+5
|
* reorganise code for better readabilityLionel Elie Mamane2012-02-091-5/+5
| | | | No behaviour change intended. However, if behaviour changed, probably the *old* behaviour is buggy, not new one.