summaryrefslogtreecommitdiff
path: root/desktop
AgeCommit message (Collapse)AuthorFilesLines
2012-04-04desktop: use CustomTarget makefileMatúš Kukan3-12/+10
2012-04-02reorganize trickier staticsCaolán McNamara1-3/+3
2012-04-02fdo#47963 do not increase height of checkboxesDavid Tardon1-3/+0
Especially as it is obvious the grow is unbounded .-)
2012-03-30removed duplicate includes in desktop / editengTakeshi Abe4-6/+0
2012-03-29remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2-7/+7
2012-03-29fix buildLuboš Luňák1-1/+1
2012-03-29desktop: unwind hideous StrTitle mess a littleMichael Meeks11-57/+52
2012-03-28when run under memcheck allow SIGUSR2 to dump current memory allocationsCaolán McNamara1-0/+1
2012-03-28drop unused global rtl::OUStringsCaolán McNamara1-2/+0
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2-18/+18
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-3/+3
2012-03-27Resolves: rhbz#807316 don't complain that nocrashreport is an unknown optionCaolán McNamara1-1/+3
2012-03-23match DB_ENV creation flags to DB creation flagsCaolán McNamara2-3/+6
2012-03-23Take a meg off our memory footprintCaolán McNamara1-1/+48
We create 6 berkleydb backed databases. If no DB_ENV is provided for a database, then berkleydb creates one for each database. Each environment has a memory footprint of about 200k. It appears to be legal to share an environment, which shaves about 1M off our permanant footprint.
2012-03-23DbEnv argument is always NULLCaolán McNamara3-13/+8
2012-03-23remove duplicate entriesDavid Tardon1-9/+0
2012-03-23simplify pagein creationDavid Tardon5-21/+8
2012-03-23move Pagein from desktop to gbuildDavid Tardon7-128/+14
2012-03-20make ResId->OUString the primary routeCaolán McNamara3-77/+76
2012-03-20Resolves rhbz#804437, do not rtl_uString_release(NULL)Stephan Bergmann1-1/+4
...in case osl_getProcessWorkingDir fails (e.g., if it has been unlinked).
2012-03-19Fixed spl_component_getFactoryStephan Bergmann3-195/+129
The old code relied on the order of initializing global static variables across compilation units, which failed for MinGW cross compilation. Cleaned up.
2012-03-19Workaround a strange wine / mingw crash.Jan Holesovsky2-5/+2
2012-03-19soffice.exe must not link against sal3.dll (might fix fdo#44489)Stephan Bergmann1-1/+0
...as soffice.exe creates the proper environment (PATH) for soffice.bin to be able to load URE libs like sal3.dll, so soffice.exe itself should neither be able to load nor depend on sal3.dll (and does not depend on anything exported by it, anyway). It is unclear to me how this ever worked (which it presumably did?) with any Windows build, either native MSVC or cross-compiled MinGW. (Maybe MSVC builds do not record a dependency from soffice.exe to sal3.dll, noting that the former does not import anything from the latter?)
2012-03-16Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann2-2/+2
2012-03-16fix windows buildMatúš Kukan7-14/+35
No idea if this is proper fix or it needs to be done otherwise.
2012-03-14fdo#47246: desktop: factor out a winextendloadenv static libraryMichael Stahl5-14/+38
2012-03-14fdo#47246: desktop: factor out a winlauncher static libraryMichael Stahl9-35/+67
2012-03-12desktop: move lockfile.cxx to libdeploymentmiscMichael Stahl6-4/+6
2012-03-12desktop: libsofficeapp shouln't need a main()Michael Stahl1-4/+0
2012-03-12fix smoketest - need to check read-only-ness of non-existent pathsMichael Meeks1-8/+15
2012-03-12replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák2-12/+6
2012-03-09Fix sense of r/o detection code, and clean upStephan Bergmann1-18/+14
2012-03-09fdo#40607 - osl_syncFile having written, and avoid doing that on startMichael Meeks1-32/+32
2012-03-09remove unused MakefileMatúš Kukan1-50/+0
2012-03-09Removed dead defineTakeshi Abe1-4/+0
It died 10 years ago: 85c2755e16883d581db39b317b8c152b551da5ba
2012-03-08desktop: do not complain about soffice command line options:Michael Stahl1-2/+8
These are handled in the soffice wrapper script, but that is too stupid to be able to filter these out, so just ignore them in soffice.bin. (regression from 4efbd87e31e7488dfcdd1d07ff979f1f59b8b1f1) Also, print errors on stderr.
2012-03-06Resolves: rhbz#800272 complain about unknown command-line optionsCaolán McNamara4-1/+28
2012-03-02Also bypass definitions of functions not used on Android or iOSTor Lillqvist1-2/+3
2012-03-02migrateSettingsIfNecessary must be called later after allStephan Bergmann3-26/+28
...once e.g. UCB is already initialized, as the invoked migration services use it.
2012-03-02Clean upStephan Bergmann1-88/+19
2012-03-01Move migrateSettingsIfNecessary into create_user_installStephan Bergmann3-13/+12
...so that it is only done once (see mail thread starting at <http://lists.freedesktop.org/archives/libreoffice/2012-February/027058.html> "User installation migrated onto itself"). Also, checking for the existence of an old user installation needed to change from ucbhelper::Content::isDocument to osl::FileStatus::getFileType, as the UCB is not yet initialized at the time migrateSettingsIfNecessary is now called.
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann6-28/+28
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-29fdo#46434: Always send command line arguments as UTF-8Stephan Bergmann1-1/+9
2012-02-29Resolves: rhbz#788045 swriter --help etc doesn't show helpCaolán McNamara1-3/+3
because the test in soffice to skip oosplash is for only one argument, and swriter points to soffice with an additional --writer argument, so the test is skipped
2012-02-29fdo#46434: No need to turn arguments into absolute file URLs when sendingStephan Bergmann1-39/+0
...as the receiving side already takes care of that (using the cwd that is sent first).
2012-02-29Typo bInhibitJavaLdx -> bInhibitPageinStephan Bergmann1-1/+1
2012-02-27fix msvc2005 buildCaolán McNamara1-2/+2
2012-02-27make desktop Bytestring freeCaolán McNamara1-16/+18
2012-02-24android: remove annoying & un-necessary dialog on startMichael Meeks1-6/+0
2012-02-23accumulate into an OStringBufferCaolán McNamara1-2/+4