summaryrefslogtreecommitdiff
path: root/dbaccess
AgeCommit message (Collapse)Author
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl
2012-04-08gbuild: "use" vs. "add":Michael Stahl
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 Dezsi
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
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 Dezsi
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 Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
2012-04-05removed unused definesTakeshi Abe
2012-04-02Translate German commentsPhilipp Weissenbacher
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara
2012-04-02always pass --headless to cppunitsLuboš Luňák
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-30removed duplicate includes in dbaccessTakeshi Abe
2012-03-26ditch some UniStrings and intermediate temporariesCaolán McNamara
2012-03-23.hrc files don't need executable bitsMichael Stahl
2012-03-23.java files don't need executable bitsMichael Stahl
2012-03-21chmod -xTor Lillqvist
2012-03-20remove extra string castsCaolán McNamara
2012-03-20fdo#47560 properly separate each new sorting columnLionel Elie Mamane
2012-03-20fdo#47370 properly duplicate (invisible) out-of-order sort columnsLionel Elie Mamane
Keep track of position of previous sorting column and use it to decide whether to duplicate invisible new sort column
2012-03-16do not initialize a field with itselfLuboš Luňák
2012-03-15fixup: use introduced preprocessor constant instead of hardcoded constantLionel Elie Mamane
2012-03-15fdo#46843 look for order by clause as fifth child of select_statementLionel Elie Mamane
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.
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-13Clean up ODocumentInfoPreviewStephan Bergmann
2012-03-12replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-09fdo#47021: the naive join attempt leads to deadlockStephan Bergmann
...something better is required (getting rid of the solar mutex?).
2012-03-05Sprinkle more DISABLE_SCRIPTING ifdefsTor Lillqvist
2012-03-02WNT-only IMPL_LINK_NOARG fixesStephan Bergmann
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-28we don't want any of these to be streamed out/in as 64bit valuesCaolán McNamara
2012-02-23Adapted AsyncEventNotifier to safer-to-use salhelper::ThreadStephan Bergmann
2012-02-22OUString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák
http://lists.freedesktop.org/archives/libreoffice/2012-February/025662.html
2012-02-21WaE: duplicateBranchThomas Arnhold
2012-02-20Remove unused codeElton Chung
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann
2012-02-19remove adabas/adabasuiCaolán McNamara
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-16Make sure spawned thread is joined againStephan Bergmann
...otherwise, it might still run during exit(3) and cause problems.
2012-02-16dbaccess' macros_test is still failing in some situationsMarkus Mohrhard
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-13Fix typos in commentsElton Chung
2012-02-12disable new test on win and mac since it is a test with UIMarkus Mohrhard
2012-02-12finish initial work on the Base testMarkus Mohrhard
Base needs the numberformatter to initialize a document
2012-02-12use better assertion macrosMarkus Mohrhard
2012-02-11first part of a c++ based test for baseMarkus Mohrhard
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan
2012-02-10dbaccess: DatabaseDataProvider is not in chart2Miklos Vajna
2012-02-09translate german commentsLionel Elie Mamane