summaryrefslogtreecommitdiff
path: root/desktop
AgeCommit message (Collapse)AuthorFilesLines
2011-03-09Revert idle whitespace changesThorsten Behrens2-3/+3
Reverting all hunks that solely change whitespace, prior to performing the m101 merge from OOo.
2011-03-05Replace OpenOffice.org to %PRODUCTNAMEAndras Timar7-4/+28
2011-03-02Move DBG_ERROR to OSL_FAILThomas Arnhold1-2/+2
2011-03-01avoid implicit castCaolán McNamara1-4/+3
2011-03-01pointless to go from char* to OString to char*Caolán McNamara1-8/+4
2011-02-27Handle DragonFly like the other BSDs in more cases.Francois Tigeot1-1/+1
2011-02-26Remove "using namespace ::rtl"Julien Nabet14-14/+34
2011-02-24remove empty TESTSHL2LIBCaolán McNamara1-1/+1
2011-02-18Initialize the runtime library paths on DragonFlyFrancois Tigeot1-1/+2
2011-02-17don't attempt to iterate through contents of a dir that doesn't existCaolán McNamara1-46/+49
2011-02-16Translation of German comment.Albert Thuswaldner16-138/+2
2011-02-12A correct solution for the std::fill_nSteven Butler1-6/+3
2011-02-11std::fill_n does not return iteratorFridrich Štrba1-4/+6
2011-02-10Add x64 Windows here, tooTor Lillqvist1-0/+3
2011-02-10rhbz#649310 don't crash deregistering diff. platform ext.David Tardon1-5/+159
This happens, for example, if one switches between, lets say, x86 and x86_64 systems and has the same /home mounted from both. Then platform-dependent extensions from one system does not exist on the other one, but must still be deregistered correctly.
2011-02-10WaE: unused variableDavid Tardon1-6/+8
2011-02-10avoid useless copyDavid Tardon1-8/+5
2011-02-10Porting LO to DragonflyFrancois Tigeot1-0/+6
2011-02-09Trying to remove the stlport mention from the codeFridrich Štrba2-10/+2
2011-02-09prewin.h already includes <windows.h>Tor Lillqvist2-2/+0
2011-02-08add in AIX here as wellCaolán McNamara1-0/+6
2011-02-08add freebsd in hereBaptiste Daroussin1-1/+1
2011-02-08oops, correct commit fa8cfcd45225d55d567e5ad05900c36700549d5dNoel Power1-1/+1
bah, I applied the wrong copy of the patch to the tree I use for committing. Minor tweak to logic
2011-02-08companion ( or even part 2 ) of a fix for fdo#30879Noel Power1-3/+19
tweak oosplash arg handling to not clobber some special url protocols, '.uno', '.slot' etc.
2011-02-08Adapt to move of prewin.h and postwin.hTor Lillqvist3-6/+6
2011-02-08Merge remote branch 'origin/libreoffice-3-3'Jan Holesovsky2-6/+22
Conflicts: sfx2/source/appl/appserv.cxx
2011-02-07fix for #30879Noel Power1-1/+1
cherry picked from 6eb4e55b0a61f793f635a8038895cb2e452dc280 Signed-off-by: Muthu Subramanian K <sumuthu@novell.com>
2011-02-05migrate to use boost unordered containersFridrich Štrba11-20/+20
2011-02-04fix for #30879Noel Power1-1/+1
2011-02-03don't pushback and process a corrupt extensionCaolán McNamara1-1/+2
Signed-off-by: David Tardon <dtardon@redhat.com>
2011-02-02Clean up makefilesThomas Arnhold3-23/+1
2011-02-01Clean up makefilesThomas Arnhold3-12/+0
2011-02-01Remove unused fileThomas Arnhold1-1/+0
2011-01-31Some cppcheck cleaningJulien Nabet7-17/+11
2011-01-31initial FreeBSD workBaptiste Daroussin1-1/+1
2011-01-26this is wrong, using a pointer to a temporaryCaolán McNamara1-2/+2
2011-01-25WaE: gcc 4.6.0 various warningsCaolán McNamara6-27/+4
2011-01-21extend assertion testDavid Tardon1-1/+1
2011-01-20Replace suitable equalsAscii calls with equalsAsciiL.Thomas Arnhold11-19/+19
Done with sed -i 's%\(\.equalsAscii\)(\(\s\?"[^"]\+"\)\(\s\?\))%\1L(\3RTL_CONSTASCII_STRINGPARAM(\2\3)\3)%g'.
2011-01-19Create process service factory early in all platforms.Kohei Yoshida3-18/+7
Just so that we can remove one #ifdef UNX guard. The less of those the easier to maintain.
2011-01-18Make --help and --version work even without $DISPLAY.Lubos Lunak3-19/+45
Signed-off-by: Kohei Yoshida <kyoshida@novell.com>
2011-01-18fix broken code indentationLuboš Luňák1-2/+2
2011-01-18build with libpng 1.5.0 (fdo#33231)Luboš Luňák1-2/+2
2011-01-18don't pushback and process a corrupt extensionCaolán McNamara1-1/+2
2011-01-18tweak G_SLICE to canonical always-mallocCaolán McNamara1-1/+1
2011-01-16drop unused stringsCaolán McNamara1-2/+0
2011-01-16drop unused global OUStringsCaolán McNamara1-5/+0
2011-01-15microopts equalsAsciiL faster than compareToAscii(const sal_Char*)Caolán McNamara1-1/+1
2011-01-15equalsAsciiL faster than equalsAscii when length availableCaolán McNamara2-2/+2
2011-01-14unopkg crasher on SLED11-SP1 (bnc#655912)Petr Mladek1-2/+6
activateExtension call broke memory if dp_misc::getIdentifier and xNewExtension were called inline; the problem was visible only with gcc-4.3.4 and did not appear with older or newer gcc versions valgrind got happy and unopkg stopped crashing after the values were passed via the extra variables it looks like a miscompilation; IMHO, it does not make sense to report it because it does not happen with last gcc version this code is not critical for the performance, so the workaround with extra variables is fine; they might even be optimized out by the compiler Signed off by Michael, Noel, Tor