summaryrefslogtreecommitdiffstats
path: root/vcl
Commit message (Collapse)AuthorAgeFilesLines
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0611-32/+20
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-1/+1
| | | | | | 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-068-29/+29
| | | | | | 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-067-72/+72
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Remove unused code (vcl)Thomas Collerton2012-04-062-31/+0
|
* No dialogs to be shown from vcl in a non-NativeActivity Android appTor Lillqvist2012-04-041-1/+11
|
* Add debugging output (this file is experimental anyway)Tor Lillqvist2012-04-041-0/+13
|
* remove useless line (probably mis-merge)David Tardon2012-04-041-1/+0
|
* Fix cursor movement in graphite fontsMartin Hosken2012-04-042-23/+27
|
* WaE fixes to the mostly dummy iOS codeTor Lillqvist2012-04-045-185/+57
|
* adjust code for what the original Intersect() usage probably meantLuboš Luňák2012-04-031-1/+1
| | | | | Daniel Bankston is right, the call probably meant to check whether the intersection is not empty, as an optimization.
* Ignore return type of Region::IntersectDaniel Bankston2012-04-031-1/+2
| | | | 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.
* fdo#44610 - EasyHackDaniel Bankston2012-04-032-61/+45
| | | | 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.
* vcl: use CustomTarget makefile for kde_mocMatúš Kukan2012-04-034-45/+12
|
* Don't crash in a non-NativeActivity app where mpApp is NULLTor Lillqvist2012-04-021-5/+4
|
* KDE3 file picker moved from fpicker to vclCédric Bosdonnat2012-04-0220-1/+3336
|
* KDE4 file picker moved from fpicker to vclCédric Bosdonnat2012-04-026-0/+991
|
* vcl: use CustomTarget makefilesMatúš Kukan2012-03-317-82/+22
|
* Add a dummy SalI18NImeStatus subclassTor Lillqvist2012-03-301-2/+15
|
* emf+ on win: implement bitmap creation from bitmapcanvasRadek Doulik2012-03-291-1/+16
|
* n714787: Duplicate code removal.Muthu Subramanian2012-03-291-34/+34
|
* bypass GtkSalPrinter when it is not enabledDavid Tardon2012-03-291-1/+1
|
* set correct paper tray in UIDavid Tardon2012-03-291-0/+21
|
* fix vertical align when switching mode in multibar fdo#44140Noel Power2012-03-271-1/+13
| | | | 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.
* Fix vcl alpha blending n#714787Thorsten Behrens2012-03-271-30/+36
| | | | | | | | | | 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
* merge getVerticalDeltaAngle and GetVerticalFlagsCaolán McNamara2012-03-261-25/+6
|
* Remove unused code in vlc.Santiago Martinez2012-03-262-11/+0
|
* configuration checked before component context existsCaolán McNamara2012-03-261-5/+10
| | | | | | 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.
* readUnicodeString can just return the stringCaolán McNamara2012-03-261-2/+2
| | | | | seeing as no-one checks the return value, we don't need the intermediate temporary string
* ditch some UniStrings and intermediate temporariesCaolán McNamara2012-03-265-10/+9
|
* .cxx files don't need executable bitsMichael Stahl2012-03-232-0/+0
|
* GenericSalLayout::KashidaJustify: STL assertionMichael Stahl2012-03-231-2/+3
| | | | | error: attempt to dereference a singular iterator. (regression from 6bb68cae7c31918eff8386d5b52be0759386bb60)
* GenericSalLayout::KashidaJustify: fix infinite loopMichael Stahl2012-03-231-0/+2
| | | | | | insert() inserts before the given iterator and returns iterator to newly inserted element, hence need to increment that iterator (regression from 6bb68cae7c31918eff8386d5b52be0759386bb60)
* GenericSalLayout::KashidaJustify: STL assertionMichael Stahl2012-03-231-1/+2
| | | | | error: attempt to compare a dereferenceable iterator to a singular iterator. (regression from 6bb68cae7c31918eff8386d5b52be0759386bb60)
* replace OpenOffice.org to LibreOffice in registry keysAndras Timar2012-03-232-3/+3
|
* Add a wrapper for InitVCL(), to be called from Java on AndroidTor Lillqvist2012-03-221-0/+22
|
* Compilation fix - GTK print dialog headers for GTK < 2.14David Bolen2012-03-211-0/+4
|
* chmod -xTor Lillqvist2012-03-211-0/+0
|
* add another bug idCaolán McNamara2012-03-201-1/+1
|
* Resolves: fdo#46923/fdo#46750 take mnSubStringMin into accountCaolán McNamara2012-03-201-1/+3
|
* remove ToDouble/ToFloatCaolán McNamara2012-03-201-1/+1
|
* Missing sub-menu arrows with 3.5.x and GTK < 2.15David Bolen2012-03-201-2/+10
| | | | | Signed-off-by: Michael Meeks <michael.meeks@suse.com> Signed-off-by: Petr Mladek <pmladek@suse.cz>
* vcl: better check in GraphiteLayout::expandOrCondense:Petr Mladek2012-03-201-1/+1
| | | | | Improves the commit d066f7e4afb3c9e395932ba7bf8715ad0770bcdd that fixed crash when printing the bugdoc from i#103958
* move #include from .h to the one .cxx where it is neededLuboš Luňák2012-03-202-1/+1
|
* remove extraneous parenthesesLuboš Luňák2012-03-161-1/+1
|
* Align transparency cut-off with application defaultsThorsten Behrens2012-03-161-1/+1
| | | | | 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
* Cleanup: remove silly extra scope.Thorsten Behrens2012-03-162-233/+225
|
* Revert "fix setting of paper tray from print dialog (fdo#43932)"David Tardon2012-03-151-1/+1
| | | | This reverts commit 6d4cca9c22c52b5a7742adc47ebf1a2930e29764.
* Remove SO52 strict compatibility stuffChristina Rossmanith2012-03-146-182/+2
|
* add 'Japanese Postcard' paper size to both Paper format and Print dialogTakeshi Abe2012-03-142-1/+3
|