summaryrefslogtreecommitdiff
path: root/dbaccess
AgeCommit message (Collapse)Author
2012-05-29improve odbc headers handlingMatúš Kukan
2012-05-28Fix typosJulien Nabet
Change-Id: I39d54e3f635be6cb7a42fc9a0f7055619c885950
2012-05-24removed unused member fieldsTakeshi Abe
Change-Id: If89fd07ad78bca303a9bf8484f08cba08afffe8d
2012-05-24convert ResStringArray to rtl::OUStringCaolán McNamara
Change-Id: I51b86a10caa5da6e12583c2b22404b0d9282b13d
2012-05-21removed unused #definesTakeshi Abe
Change-Id: I2aeba0342e46c3a4bd50f49b8a43ebb125269dfa
2012-05-17catch by const referenceTakeshi Abe
Change-Id: I80a26483c4ecd099a1cfe76bdac1e97b947ef104
2012-05-17removed unused const rtl::OUStringTakeshi Abe
Change-Id: I7c3409ac39e690fcf2f7e4085bf6857e6bd182fb
2012-05-17merge the 5 ConstAsciiString duplicate classes togetherCaolán McNamara
a) merge them together and move it into comphelper b) turn it into a POD rather than having vast amounts of destructors registered into the cxa_atexit chain Change-Id: I04d3b9d7804f8e233013c916df9d617a0f84f96a
2012-05-16removed unused constant rtl::OUStringTakeshi Abe
Change-Id: I173275e0f8faa852500d108f65636080f79636c6
2012-05-16remove unneeded include of boost/bind.hppCaolán McNamara
Change-Id: I5a254459a491b9547530d8e312260dceed21f25c
2012-05-15simplify/clarify codeLionel Elie Mamane
2012-05-15fdo#48345 need to refresh row also when not m_bRowCountFinalLionel Elie Mamane
2012-05-14convert GetComment family to rtl::OUStringCaolán McNamara
Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
2012-05-08fdo#45580 crash on "connect to existing database" wizardLionel Elie Mamane
2012-04-30make ResId::toString a non-static memberCaolán McNamara
Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb
2012-04-29Prefix ++/-- operators for non-primitive typesJulien Nabet
Change-Id: I827e539c65a7463709af6425d39ccaaedaa73a8d
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-27WaE: exception handlers used in code without unwind supportCaolán McNamara
Change-Id: I1efec5017927d06c519f65312ab29e2b19a6cff6
2012-04-24WaE: equality comparison with extraneous parenthesesTor Lillqvist
2012-04-24WaE: using the result of an assignment as a condition without parenthesesTor Lillqvist
2012-04-24WaE: use of logical '&&' with constant operandTor Lillqvist
2012-04-23Bug 42982 Patch - copytablewizard.cxxAbeer Sethi
2012-04-21Replace css macro with namespace for nicer namespacingThomas Arnhold
2012-04-16mingw: avoid weird build error and -WerrorDavid Tardon
The error message is: "'*((void*)& aValue +1)' may be used uninitialized in this function" using gcc 4.7.0 in gnu++11 mode and boost 1.48.0 .
2012-04-13Translate German commentsPhilipp Weissenbacher
2012-04-12move dependency on localedata_en to i18npoolMatúš Kukan
2012-04-09do not put things directly into $(WORKDIR)David Tardon
2012-04-09add package deps for resourcesDavid Tardon
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08rename gb_CppunitTest_uses_ureDavid Tardon
2012-04-08compile- and run-time use of UNO must be splitDavid Tardon
There are unit tests that do not use URE, e.g., in cppuhelper. This reverts commit 33e9f3d3d6b29545ef9df3f5334c015e15caa5c8. Conflicts: sot/CppunitTest_sot_test_sot.mk svl/CppunitTest_svl_urihelper.mk
2012-04-08simplify use of configuration from unit testsDavid Tardon
2012-04-08always use --protector for UNO testsDavid Tardon
2012-04-08drop uses_ureDavid Tardon
2012-04-08let use_api handle the use of type rdbs at runtimeDavid Tardon
Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime?
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