summaryrefslogtreecommitdiff
path: root/svtools
AgeCommit message (Collapse)Author
2012-05-04fpicker: make the place edition dialog workingCédric Bosdonnat
Change-Id: If290ea4c1418162902e00bcc29c3afe69685ec5d
2012-05-02!= instead of < for comparison with end iteratorJulien Nabet
Change-Id: I7baa34c1cf7161fb55914d41b451b842ad4ab0c8
2012-04-30add another test docCaolán McNamara
Change-Id: I6cc92e2242cf0f162b5c670bf2e70f1e8fc49a28
2012-04-30Related: moz#424333 pixmaps are limited to max signed shortCaolán McNamara
Change-Id: I88cfd9592e11aa7dbe704df4810090b6a1ce4c66
2012-04-30make ResId::toString a non-static memberCaolán McNamara
Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb
2012-04-29Fix buildissue in svtools with missing include.Tomas Chvatal
cpp: line 33, Fatal error: Cannot open include file "svtools/svtools.hrc" Change-Id: Ic7bd1af8f14cc0e44328c9f149c5dc45f04e5afb
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-27ruler: Implemented the design by Mirek M.Jan Holesovsky
See http://listarchives.libreoffice.org/global/design/msg04151.html for details. Change-Id: I9c01ecd5951deba13ed6ddd2a69946dc1334ca43
2012-04-27Make the default application background lighter (and remove a hack).Jan Holesovsky
Change-Id: I03f8db9b47ceb9b0240f3ac549681d8362eea0b5
2012-04-27ruler: Kill STYLE_OPTION_MONO usage.Jan Holesovsky
According to the discussion on the design@ list, we want much more flat look overall anyway, so no need to distinguish between '3D' and 'flat' look. Change-Id: Ibf88d722c9ebfa9872ffd9a1a156b77478ded655
2012-04-25Remove unused methodsJosé Santiago Jiménez Sarmiento
2012-04-25refactor ImpSvtDataCaolán McNamara
2012-04-25DeleteOnIdleItems isn't called anywhereCaolán McNamara
2012-04-25after nine years, time to give up on the REGEXP_SUPPORT dreamCaolán McNamara
2012-04-25drop a String::CreateFromAsciiCaolán McNamara
2012-04-24it's Erzya, not EryzaEike Rathke
2012-04-23Add some more timelogging, for graphic export here.Thorsten Behrens
2012-04-21Replace css macro with namespace for nicer namespacingThomas Arnhold
2012-04-20String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara
2012-04-19fdo#48917 added Eryza [myv-RU] and Meadow Mari [mhr-RU] to language listEike Rathke
2012-04-19gif parsing regression testCaolán McNamara
2012-04-18jpg parsing regression testCaolán McNamara
2012-04-18callcatcher: update listCaolán McNamara
2012-04-18UniString->rtl::OUStringCaolán McNamara
2012-04-18hard-coded windows dumper path makes no sense for us anymoreCaolán McNamara
2012-04-18string created but never usedCaolán McNamara
2012-04-17png parsing regression testCaolán McNamara
2012-04-16WaE: "CDECL" redefinedDavid Tardon
2012-04-16callcatcher: update listCaolán McNamara
2012-04-16callcatcher: update unused codeCaolán McNamara
2012-04-12remove formfeedsThomas Arnhold
2012-04-12callcatcher: update unused code listCaolán McNamara
2012-04-11Replace deprecated List for std::vector.Rafael Dominguez
2012-04-11String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara
2012-04-10Resolves: fdo#31022 about dialog is suboptimalAndrew Higginson
2012-04-10catch by const refCaolán McNamara
2012-04-09s/pathes/paths/Tor Lillqvist
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-08clean upDavid Tardon
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 )/' \{\} \;