Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-30 | i#87757: do not create empty Rectangle bounding box for glyphs: | Michael Stahl | |
Enforce a minimum width and height of 1 in GlyphMetric::SetSize(), preventing X11SalGraphics::GetGlyphBoundRect() from returning a Rectangle that has one side set as RECT_EMPTY. This problem has surfaced due to the change of the status bar in ce14342c4292628a641a72d4f63d9c048e030c6a, causing the AccessibleStatusBarItem to fail in getCharacterBounds() because the text of the control, "Words: 0", now contains a space, for which an empty Rectangle bounding box is created, which results in a wrong return value from getCharacterBounds(): LOG> Character bounds outside component LOG> Character rect: 43, -566, 0, 0 LOG> Component rect: 91, 2, 71, 18 It turns out that the following test was disabled due to this problem, so re-enable it now: toolkit.AccessibleFixedText::com::sun::star::accessibility::XAccessibleText | |||
2012-05-29 | targeted string re-work | Norbert Thiebaud | |
Change-Id: I6ce76c22118586b213161a0e307a53b22b318004 | |||
2012-05-28 | targeted string re-work | Norbert Thiebaud | |
Change-Id: If929937d8b1243032983b8b379f067a47d2717a4 | |||
2012-05-21 | removed unused temporary rtl::OUString | Takeshi Abe | |
Change-Id: I81e04b1b71b8ee5a903185b6857e8cf91b67eed1 | |||
2012-05-08 | work around spurious signed overflow warnings | Michael Stahl | |
gcc version 4.6.3 20120306 (Red Hat 4.6.3-2) (GCC): /com/sun/star/uno/Sequence.hxx:178:10: error: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Werror=strict-overflow] | |||
2012-05-04 | fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CAST | Thomas Arnhold | |
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382 | |||
2012-05-02 | != instead of < for comparison with end iterator | Julien Nabet | |
Change-Id: I7baa34c1cf7161fb55914d41b451b842ad4ab0c8 | |||
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-24 | save the next guy from getting caught with msvc template requirements | Caolán McNamara | |
2012-04-24 | inline unused ctor needed by MSVC at compile time | Caolán McNamara | |
2012-04-24 | Remove unused method UnoControlBase::UnoControlBase() | Xavi Escriche Galindo | |
2012-04-20 | WaE: MSVC20082 unreferenced argument | Caolán McNamara | |
2012-04-18 | after 11 years it's time to forget about that to-do | Caolán McNamara | |
2012-04-17 | Remove some unused methods | Julien Nabet | |
2012-04-13 | Little bit more explanation, feel free to improve | Tor Lillqvist | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | LinkTarget.mk: remove gb_LinkTarget_add_package_headers | Michael Stahl | |
2012-04-08 | gbuild: "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-07 | callcatcher: update and remove newly unused methods | Caolán McNamara | |
2012-04-07 | don't need this pure virtual impl | Caolán McNamara | |
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-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \; | |||
2012-04-05 | UniString::CreateFromInt32 -> rtl::OUString::valueOf | Caolán McNamara | |
2012-04-05 | callcatcher: update list, add README, remove some newly unused code | Caolán McNamara | |
2012-04-05 | disabled for 11 years, not like to get fixed soon | Caolán McNamara | |
2012-03-30 | remove static OUStrings from static_initialization_and_destruction chain | Caolán McNamara | |
2012-03-29 | Remove unnecessary tools/table.hxx #includes | Noel Grandin | |
2012-03-23 | .java files don't need executable bits | Michael Stahl | |
2012-03-21 | chmod -x | Tor Lillqvist | |
2012-03-16 | Introduced SystemShellExecuteFlags::URIS_ONLY | Stephan Bergmann | |
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 | Convert tools/table.hxx usage to std::set in toolkit module in ↵ | Noel Grandin | |
UnoPropertyArrayHelper class | |||
2012-03-10 | gbuild: get rid of realpath in gb_Foo_set_include | Matúš Kukan | |
2012-03-05 | fix dbgutil build | Caolán McNamara | |
2012-03-05 | Convert ImplPropertyTable from tools/table.hxx to std::map | Noel Grandin | |
In the process, remove the ImplControlProperty struct, since it was duplicating information already stored in the key of the map. | |||
2012-03-05 | Remove unused code | Elton Chung | |
2012-03-01 | New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problem | Stephan Bergmann | |
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem. | |||
2012-02-24 | toolkit: fix module name for svt to 'merged' when using mergedlibs | Michael Meeks | |
2012-02-20 | gb_JunitTest_JunitTest takes only one argument | Stephan Bergmann | |
2012-02-19 | entirely unused UnoMemoryStream class | Caolán McNamara | |
2012-02-17 | Introduce headless switch for X / cairo / toolkit less build | Riccardo Magliocchetti | |
The plan is to reduce dependencies to be easier to deploy libreoffice server side in headless mode. | |||
2012-02-16 | callcatcher: update unused code list | Caolán McNamara | |
2012-02-16 | Clang -Wconstant-conversion. | Stephan Bergmann | |
2012-02-13 | fix support for embedded images for basic Dialogs ( fdo#45992 ) | Noel Power | |
2012-02-13 | callcatcher: regenerate list | Caolán McNamara | |
2012-02-08 | update unused list | Caolán McNamara | |
2012-02-08 | Added (and improved) READMEs for modules which used to be in libs-gui | Josh Heidenreich | |
2012-02-05 | switch to include-based build rather than sourced-based build | Norbert Thiebaud | |
2012-01-30 | refactor ConvertLineEnd | Caolán McNamara | |
2012-01-30 | CreateResMgr just takes a const char* | Caolán McNamara | |