summaryrefslogtreecommitdiff
path: root/connectivity
AgeCommit message (Collapse)Author
2012-05-14TDE integrationNorbert Thiebaud
Change-Id: I6f468005c8d8d99d9251a9c4fe4629b98bc4aa5e
2012-05-14removed unused static rtl::OUStringTakeshi Abe
Change-Id: I5a097beaaeb30214ed6071bba1297e551291922b
2012-05-14ppc: yyinput returns a int, truncating to (unsigned)char does't workCaolán McNamara
retain this as an int so that on platforms where char is unsigned we don't mangle the value and get this all wrong. Fixes database opening tables on ppc if -fsigned-char is removed Change-Id: I66f0c6b1b19191595f8b348377579f2daabf7ada
2012-05-04Revert "Fix Windows debug build."Jesús Corrius
This reverts commit db649c52911fd5b030a7e4e0c941d7ee75b98785. I will patch the external postgresql library instead.
2012-05-03respect absolute paths for mozilla profile, fdo#45171, lp#919659Markus Mohrhard
Change-Id: I536238f1f3b05e0a942caa1f65444688d4d36704
2012-05-03Fix Windows debug build.Jesús Corrius
The postgresql static library on Windows is named libpqd.lib in debug and libpq.lib when compiled in release. We prefer to not touch the external postgresql, so we make the proper changes in the connectivity module.
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen
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-25WaE: hides overloaded virtual functionTor Lillqvist
Use "using" declarations instead of a pragma. Gets rid of the warnings completely instead of making them non-errors in a -Werror compilation.
2012-04-24WaE: make the overloaded-virtual mess here just a warning even with -WerrorTor Lillqvist
2012-04-24Bin weird DBGUTIL_OJ crackTor Lillqvist
2012-04-23WaE: Clang implicit conversion changes signednessCatalin Iacob
The various *Card* members call getByIndex(rowIndex) and getByIndex expects sal_uInt32 so change everything to it. Change callers as well to adapt to the change.
2012-04-23WaE: Clang implicit conversion changes signednessCatalin Iacob
index is passed to getByIndex which takes sal_uInt32 so just use sal_uInt32 everywhere
2012-04-23WaE: Clang expression result unusedCatalin Iacob
2012-04-17Remove some unused methodsJulien Nabet
2012-04-17translated or removed german comments in connectivity, cppuhelper and cuiFlorian Allmann-Rahn
2012-04-16Remove unused code in connectivity.Santiago Martinez
2012-04-16callcatcher: update listCaolán McNamara
2012-04-16hard to tell what side-effects dbtools::StatementComposer::getQuery might haveCaolán McNamara
2012-04-16_bUseRowSetFilter and _bUseRowSetOrder are always trueCaolán McNamara
2012-04-16simplify getComposedRowSetStatementCaolán McNamara
2012-04-16callcatcher: update unused codeCaolán McNamara
2012-04-13fix library link order to work with link --as-neededPetr Mladek
2012-04-12callcatcher: update unused code listCaolán McNamara
2012-04-10Remove VERBOSE part 3Rob Snelders
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-07callcatcher: update and remove newly unused methodsCaolán McNamara
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-05no use is made of FmFormObj::m_nTypeCaolán McNamara
2012-03-29Fixes a bunch of "Prefer prefix ++/-- operators for non-primitive types"Julien Nabet
2012-03-29Remove unused code in connectiviy.Santiago Martinez
2012-03-29remove dangling declarationCaolán McNamara
2012-03-29Remove unused code in sqlnodeSantiago Martinez
2012-03-29removed duplicate includes in connectivityTakeshi Abe
2012-03-27fdo#47937: copy column privileges into table privilegesLionel Elie Mamane
2012-03-23.txt files don't need executable bitsMichael Stahl
2012-03-23.sce files don't need executable bitsMichael Stahl
2012-03-23.component files don't need executable bitsMichael Stahl
2012-03-23.hrc files don't need executable bitsMichael Stahl
2012-03-23.h files don't need executable bitsMichael Stahl
2012-03-23.java files don't need executable bitsMichael Stahl
2012-03-23cut mozab down to size somewhatCaolán McNamara
2012-03-21chmod -xTor Lillqvist
2012-03-20callcatcher: update listCaolán McNamara
2012-03-20Remove unused code as listed in unusedcode.easySantiago Martinez
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-13WaE: command line option '-fpermissive' is valid for C++/ObjC++ but not for CDavid Tardon
2012-03-13actually use the base class, not the class itselfLuboš Luňák
2012-03-12suppress "SQL_API redefined" error with -WerrorDavid Tardon
2012-03-12WaE: missing braces around initializer for 'unsigned char [8]'David Tardon