summaryrefslogtreecommitdiff
path: root/vcl
AgeCommit message (Collapse)Author
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-07callcatcher: update and remove newly unused methodsCaolán McNamara
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/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Remove unused code (vcl)Thomas Collerton
2012-04-04No dialogs to be shown from vcl in a non-NativeActivity Android appTor Lillqvist
2012-04-04Add debugging output (this file is experimental anyway)Tor Lillqvist
2012-04-04remove useless line (probably mis-merge)David Tardon
2012-04-04Fix cursor movement in graphite fontsMartin Hosken
2012-04-04WaE fixes to the mostly dummy iOS codeTor Lillqvist
2012-04-03adjust code for what the original Intersect() usage probably meantLuboš Luňák
Daniel Bankston is right, the call probably meant to check whether the intersection is not empty, as an optimization.
2012-04-03Ignore return type of Region::IntersectDaniel Bankston
Caller of Region::Intersect was not ignore the return value in a conditional, so I refactored the conditional to not depend on the return value of Intersect without affect the original functionality of the code. This usage of Intersect may be a possible defect and should be checked out.
2012-04-03fdo#44610 - EasyHackDaniel Bankston
Since they always return sal_Bool values that are not used by any callers, I changed the Region class methods (both versions of each Union, Intersect, Exclude, XOr) from sal_Bool return type to void return type.
2012-04-03vcl: use CustomTarget makefile for kde_mocMatúš Kukan
2012-04-02Don't crash in a non-NativeActivity app where mpApp is NULLTor Lillqvist
2012-04-02KDE3 file picker moved from fpicker to vclCédric Bosdonnat
2012-04-02KDE4 file picker moved from fpicker to vclCédric Bosdonnat
2012-03-31vcl: use CustomTarget makefilesMatúš Kukan
2012-03-30Add a dummy SalI18NImeStatus subclassTor Lillqvist
2012-03-29emf+ on win: implement bitmap creation from bitmapcanvasRadek Doulik
2012-03-29n714787: Duplicate code removal.Muthu Subramanian
2012-03-29bypass GtkSalPrinter when it is not enabledDavid Tardon
2012-03-29set correct paper tray in UIDavid Tardon
2012-03-27fix vertical align when switching mode in multibar fdo#44140Noel Power
switching between SumAssign & OkCancel mode in the multibar results in a slight 'jumping' of the toolbar items when end up out of allignment with the other toolbar items.
2012-03-27Fix vcl alpha blending n#714787Thorsten Behrens
The way alpha compositing took place in vcl's alpha vdev was subtly wrong - it was supposed to implement porter-duff 'over', but didn't. This is now fixed also for cases where the source surface contains alpha, and needs to blend correctly into fully-transparent background. For reference: http://en.wikipedia.org/wiki/Alpha_compositing
2012-03-26merge getVerticalDeltaAngle and GetVerticalFlagsCaolán McNamara
2012-03-26Remove unused code in vlc.Santiago Martinez
2012-03-26configuration checked before component context existsCaolán McNamara
in simple applications, e.g. spadmin, which don't have a custom main, then this configuration check happens too early before Application::Main gets run to have a chance to set the ProcessComponentContext.
2012-03-26readUnicodeString can just return the stringCaolán McNamara
seeing as no-one checks the return value, we don't need the intermediate temporary string
2012-03-26ditch some UniStrings and intermediate temporariesCaolán McNamara
2012-03-23.cxx files don't need executable bitsMichael Stahl
2012-03-23GenericSalLayout::KashidaJustify: STL assertionMichael Stahl
error: attempt to dereference a singular iterator. (regression from 6bb68cae7c31918eff8386d5b52be0759386bb60)
2012-03-23GenericSalLayout::KashidaJustify: fix infinite loopMichael Stahl
insert() inserts before the given iterator and returns iterator to newly inserted element, hence need to increment that iterator (regression from 6bb68cae7c31918eff8386d5b52be0759386bb60)
2012-03-23GenericSalLayout::KashidaJustify: STL assertionMichael Stahl
error: attempt to compare a dereferenceable iterator to a singular iterator. (regression from 6bb68cae7c31918eff8386d5b52be0759386bb60)
2012-03-23replace OpenOffice.org to LibreOffice in registry keysAndras Timar
2012-03-22Add a wrapper for InitVCL(), to be called from Java on AndroidTor Lillqvist
2012-03-21Compilation fix - GTK print dialog headers for GTK < 2.14David Bolen
2012-03-21chmod -xTor Lillqvist
2012-03-20add another bug idCaolán McNamara
2012-03-20Resolves: fdo#46923/fdo#46750 take mnSubStringMin into accountCaolán McNamara
2012-03-20remove ToDouble/ToFloatCaolán McNamara
2012-03-20Missing sub-menu arrows with 3.5.x and GTK < 2.15David Bolen
Signed-off-by: Michael Meeks <michael.meeks@suse.com> Signed-off-by: Petr Mladek <pmladek@suse.cz>
2012-03-20vcl: better check in GraphiteLayout::expandOrCondense:Petr Mladek
Improves the commit d066f7e4afb3c9e395932ba7bf8715ad0770bcdd that fixed crash when printing the bugdoc from i#103958
2012-03-20move #include from .h to the one .cxx where it is neededLuboš Luňák
2012-03-16remove extraneous parenthesesLuboš Luňák
2012-03-16Align transparency cut-off with application defaultsThorsten Behrens
So, the Impress transparence default is 50% - we'd want that to *not* be fully transparent on vclcanvas, so shift the cut-off by one
2012-03-16Cleanup: remove silly extra scope.Thorsten Behrens