summaryrefslogtreecommitdiffstats
path: root/toolkit
Commit message (Collapse)AuthorAgeFilesLines
* i#87757: do not create empty Rectangle bounding box for glyphs:Michael Stahl2012-05-301-4/+0
| | | | | | | | | | | | | | | | | | | | | 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
* targeted string re-workNorbert Thiebaud2012-05-291-13/+13
| | | | Change-Id: I6ce76c22118586b213161a0e307a53b22b318004
* targeted string re-workNorbert Thiebaud2012-05-2819-80/+78
| | | | Change-Id: If929937d8b1243032983b8b379f067a47d2717a4
* removed unused temporary rtl::OUStringTakeshi Abe2012-05-211-1/+0
| | | | Change-Id: I81e04b1b71b8ee5a903185b6857e8cf91b67eed1
* work around spurious signed overflow warningsMichael Stahl2012-05-082-6/+12
| | | | | | | 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]
* fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold2012-05-0419-100/+100
| | | | Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
* != instead of < for comparison with end iteratorJulien Nabet2012-05-021-1/+1
| | | | Change-Id: I7baa34c1cf7161fb55914d41b451b842ad4ab0c8
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-1/+0
| | | | | | | | 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
* save the next guy from getting caught with msvc template requirementsCaolán McNamara2012-04-242-13/+10
|
* inline unused ctor needed by MSVC at compile timeCaolán McNamara2012-04-241-2/+4
|
* Remove unused method UnoControlBase::UnoControlBase()Xavi Escriche Galindo2012-04-241-8/+0
|
* WaE: MSVC20082 unreferenced argumentCaolán McNamara2012-04-201-1/+1
|
* after 11 years it's time to forget about that to-doCaolán McNamara2012-04-181-6/+0
|
* Remove some unused methodsJulien Nabet2012-04-174-14/+0
|
* Little bit more explanation, feel free to improveTor Lillqvist2012-04-131-1/+7
|
* Replaced a few equal calls with ==Szabolcs Dezsi2012-04-082-2/+2
|
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-081-1/+1
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-082-4/+4
| | | | | | | | | 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)
* callcatcher: update and remove newly unused methodsCaolán McNamara2012-04-073-4/+6
|
* don't need this pure virtual implCaolán McNamara2012-04-071-6/+0
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-062-6/+6
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-1/+1
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
* UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara2012-04-051-3/+3
|
* callcatcher: update list, add README, remove some newly unused codeCaolán McNamara2012-04-051-7/+0
|
* disabled for 11 years, not like to get fixed soonCaolán McNamara2012-04-051-34/+0
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-301-3/+3
|
* Remove unnecessary tools/table.hxx #includesNoel Grandin2012-03-292-2/+0
|
* .java files don't need executable bitsMichael Stahl2012-03-2319-0/+0
|
* chmod -xTor Lillqvist2012-03-211-0/+0
|
* Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann2012-03-161-1/+1
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-141-0/+3
| | | | | | | | | | | | | | ...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.
* Convert tools/table.hxx usage to std::set in toolkit module in ↵Noel Grandin2012-03-132-16/+15
| | | | UnoPropertyArrayHelper class
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-101-2/+2
|
* fix dbgutil buildCaolán McNamara2012-03-051-1/+1
|
* Convert ImplPropertyTable from tools/table.hxx to std::mapNoel Grandin2012-03-052-93/+48
| | | | | | In the process, remove the ImplControlProperty struct, since it was duplicating information already stored in the key of the map.
* Remove unused codeElton Chung2012-03-052-18/+1
|
* New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann2012-03-011-1/+1
| | | | | ...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
* toolkit: fix module name for svt to 'merged' when using mergedlibsMichael Meeks2012-02-241-1/+7
|
* gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2012-02-201-1/+1
|
* entirely unused UnoMemoryStream classCaolán McNamara2012-02-195-186/+0
|
* Introduce headless switch for X / cairo / toolkit less buildRiccardo Magliocchetti2012-02-171-0/+2
| | | | | The plan is to reduce dependencies to be easier to deploy libreoffice server side in headless mode.
* callcatcher: update unused code listCaolán McNamara2012-02-162-37/+0
|
* Clang -Wconstant-conversion.Stephan Bergmann2012-02-161-1/+1
|
* fix support for embedded images for basic Dialogs ( fdo#45992 )Noel Power2012-02-136-34/+88
|
* callcatcher: regenerate listCaolán McNamara2012-02-131-14/+0
|
* update unused listCaolán McNamara2012-02-081-9/+0
|
* Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich2012-02-081-0/+1
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* refactor ConvertLineEndCaolán McNamara2012-01-301-2/+1
|
* CreateResMgr just takes a const char*Caolán McNamara2012-01-301-4/+2
|