summaryrefslogtreecommitdiff
path: root/toolkit
AgeCommit message (Collapse)AuthorFilesLines
2012-07-06fix dialog editor crasher fdo#51269Noel Power1-0/+13
missing clone of AllDialogChildren property was the culprit here. Change-Id: I6c5ee105003967429d5bf79639ae75fb7d90562a
2012-06-22use generic names rather than specific algorithm names when scalingLuboš Luňák1-1/+1
The Lanczos scaling is of very good quality, but it's rather slow, which can be very noticeable with large images, so it's not a very good default for everything. And in general, it's not good to refer to a specific algorithm when all one usually wants is fast/default/best. Some of these changes are a bit of a guess between default/best, but the general logic is that best should be used only for images that won't be large or where the possible waiting does not matter. Conflicts: svtools/source/graphic/grfmgr2.cxx Change-Id: I53765507ecb7ed167890f6dd05e73fe53ffd0231
2012-06-05Use BMP_SCALE_LANCZOS instead of BMP_SCALE_INTERPOLATE.Jan Holesovsky1-1/+1
Where we explicitly ask for better quality, use BMP_SCALE_LANCZOS, instead of BMP_SCALE_INTERPOLATE. Change-Id: I28ddf3290204532a8660e09ee9ab0949b6ce1c73
2012-06-04fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin4-29/+25
Update calls to factories to use new ::create methods Change-Id: I01d4417820f52718836c92faf3c2fae0dc96b30d Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
2012-05-30i#87757: do not create empty Rectangle bounding box for glyphs:Michael Stahl1-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
2012-05-29targeted string re-workNorbert Thiebaud1-13/+13
Change-Id: I6ce76c22118586b213161a0e307a53b22b318004
2012-05-28targeted string re-workNorbert Thiebaud19-80/+78
Change-Id: If929937d8b1243032983b8b379f067a47d2717a4
2012-05-21removed unused temporary rtl::OUStringTakeshi Abe1-1/+0
Change-Id: I81e04b1b71b8ee5a903185b6857e8cf91b67eed1
2012-05-08work around spurious signed overflow warningsMichael Stahl2-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]
2012-05-04fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold19-100/+100
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
2012-05-02!= instead of < for comparison with end iteratorJulien Nabet1-1/+1
Change-Id: I7baa34c1cf7161fb55914d41b451b842ad4ab0c8
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-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
2012-04-24save the next guy from getting caught with msvc template requirementsCaolán McNamara2-13/+10
2012-04-24inline unused ctor needed by MSVC at compile timeCaolán McNamara1-2/+4
2012-04-24Remove unused method UnoControlBase::UnoControlBase()Xavi Escriche Galindo1-8/+0
2012-04-20WaE: MSVC20082 unreferenced argumentCaolán McNamara1-1/+1
2012-04-18after 11 years it's time to forget about that to-doCaolán McNamara1-6/+0
2012-04-17Remove some unused methodsJulien Nabet4-14/+0
2012-04-13Little bit more explanation, feel free to improveTor Lillqvist1-1/+7
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi2-2/+2
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl1-1/+1
2012-04-08gbuild: "use" vs. "add":Michael Stahl2-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)
2012-04-07callcatcher: update and remove newly unused methodsCaolán McNamara3-4/+6
2012-04-07don't need this pure virtual implCaolán McNamara1-6/+0
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2-6/+6
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 Dezsi1-1/+1
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
2012-04-05UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara1-3/+3
2012-04-05callcatcher: update list, add README, remove some newly unused codeCaolán McNamara1-7/+0
2012-04-05disabled for 11 years, not like to get fixed soonCaolán McNamara1-34/+0
2012-03-30remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-3/+3
2012-03-29Remove unnecessary tools/table.hxx #includesNoel Grandin2-2/+0
2012-03-23.java files don't need executable bitsMichael Stahl19-0/+0
2012-03-21chmod -xTor Lillqvist1-0/+0
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann1-1/+1
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann1-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.
2012-03-13Convert tools/table.hxx usage to std::set in toolkit module in ↵Noel Grandin2-16/+15
UnoPropertyArrayHelper class
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan1-2/+2
2012-03-05fix dbgutil buildCaolán McNamara1-1/+1
2012-03-05Convert ImplPropertyTable from tools/table.hxx to std::mapNoel Grandin2-93/+48
In the process, remove the ImplControlProperty struct, since it was duplicating information already stored in the key of the map.
2012-03-05Remove unused codeElton Chung2-18/+1
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann1-1/+1
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-24toolkit: fix module name for svt to 'merged' when using mergedlibsMichael Meeks1-1/+7
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann1-1/+1
2012-02-19entirely unused UnoMemoryStream classCaolán McNamara5-186/+0
2012-02-17Introduce headless switch for X / cairo / toolkit less buildRiccardo Magliocchetti1-0/+2
The plan is to reduce dependencies to be easier to deploy libreoffice server side in headless mode.
2012-02-16callcatcher: update unused code listCaolán McNamara2-37/+0
2012-02-16Clang -Wconstant-conversion.Stephan Bergmann1-1/+1
2012-02-13fix support for embedded images for basic Dialogs ( fdo#45992 )Noel Power6-34/+88
2012-02-13callcatcher: regenerate listCaolán McNamara1-14/+0
2012-02-08update unused listCaolán McNamara1-9/+0