Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-14 | TDE integration | Norbert Thiebaud | |
Change-Id: I6f468005c8d8d99d9251a9c4fe4629b98bc4aa5e | |||
2012-05-14 | removed unused static rtl::OUString | Takeshi Abe | |
Change-Id: I5a097beaaeb30214ed6071bba1297e551291922b | |||
2012-05-14 | ppc: yyinput returns a int, truncating to (unsigned)char does't work | Caolá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-04 | Revert "Fix Windows debug build." | Jesús Corrius | |
This reverts commit db649c52911fd5b030a7e4e0c941d7ee75b98785. I will patch the external postgresql library instead. | |||
2012-05-03 | respect absolute paths for mozilla profile, fdo#45171, lp#919659 | Markus Mohrhard | |
Change-Id: I536238f1f3b05e0a942caa1f65444688d4d36704 | |||
2012-05-03 | Fix 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-29 | make gbuild the default assumption of build.pl | Bjoern 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-25 | WaE: hides overloaded virtual function | Tor 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-24 | WaE: make the overloaded-virtual mess here just a warning even with -Werror | Tor Lillqvist | |
2012-04-24 | Bin weird DBGUTIL_OJ crack | Tor Lillqvist | |
2012-04-23 | WaE: Clang implicit conversion changes signedness | Catalin 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-23 | WaE: Clang implicit conversion changes signedness | Catalin Iacob | |
index is passed to getByIndex which takes sal_uInt32 so just use sal_uInt32 everywhere | |||
2012-04-23 | WaE: Clang expression result unused | Catalin Iacob | |
2012-04-17 | Remove some unused methods | Julien Nabet | |
2012-04-17 | translated or removed german comments in connectivity, cppuhelper and cui | Florian Allmann-Rahn | |
2012-04-16 | Remove unused code in connectivity. | Santiago Martinez | |
2012-04-16 | callcatcher: update list | Caolán McNamara | |
2012-04-16 | hard to tell what side-effects dbtools::StatementComposer::getQuery might have | Caolán McNamara | |
2012-04-16 | _bUseRowSetFilter and _bUseRowSetOrder are always true | Caolán McNamara | |
2012-04-16 | simplify getComposedRowSetStatement | Caolán McNamara | |
2012-04-16 | callcatcher: update unused code | Caolán McNamara | |
2012-04-13 | fix library link order to work with link --as-needed | Petr Mladek | |
2012-04-12 | callcatcher: update unused code list | Caolán McNamara | |
2012-04-10 | Remove VERBOSE part 3 | Rob Snelders | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-07 | callcatcher: update and remove newly unused methods | Caolán McNamara | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-05 | no use is made of FmFormObj::m_nType | Caolán McNamara | |
2012-03-29 | Fixes a bunch of "Prefer prefix ++/-- operators for non-primitive types" | Julien Nabet | |
2012-03-29 | Remove unused code in connectiviy. | Santiago Martinez | |
2012-03-29 | remove dangling declaration | Caolán McNamara | |
2012-03-29 | Remove unused code in sqlnode | Santiago Martinez | |
2012-03-29 | removed duplicate includes in connectivity | Takeshi Abe | |
2012-03-27 | fdo#47937: copy column privileges into table privileges | Lionel Elie Mamane | |
2012-03-23 | .txt files don't need executable bits | Michael Stahl | |
2012-03-23 | .sce files don't need executable bits | Michael Stahl | |
2012-03-23 | .component files don't need executable bits | Michael Stahl | |
2012-03-23 | .hrc files don't need executable bits | Michael Stahl | |
2012-03-23 | .h files don't need executable bits | Michael Stahl | |
2012-03-23 | .java files don't need executable bits | Michael Stahl | |
2012-03-23 | cut mozab down to size somewhat | Caolán McNamara | |
2012-03-21 | chmod -x | Tor Lillqvist | |
2012-03-20 | callcatcher: update list | Caolán McNamara | |
2012-03-20 | Remove unused code as listed in unusedcode.easy | Santiago Martinez | |
2012-03-14 | Enable -Wnon-virtual-dtor for GCC 4.6 | Stephan 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-13 | WaE: command line option '-fpermissive' is valid for C++/ObjC++ but not for C | David Tardon | |
2012-03-13 | actually use the base class, not the class itself | Luboš Luňák | |
2012-03-12 | suppress "SQL_API redefined" error with -Werror | David Tardon | |
2012-03-12 | WaE: missing braces around initializer for 'unsigned char [8]' | David Tardon | |