summaryrefslogtreecommitdiffstats
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* gbuild: "use" vs. "add":Michael Stahl2012-04-0826-42/+42
| | | | | | | | | 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)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0610-89/+33
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-062-6/+6
| | | | | | 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-27/+27
| | | | | | 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-8/+8
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Fix Prefer prefix ++/-- operatorsJulien Nabet2012-04-056-7/+7
| | | | Includes too replacement < by != for comparison between current and end iterators
* DEFINE_CONST_UNICODE isn't needed here anymoreCaolán McNamara2012-04-051-27/+25
|
* unused U2S defineCaolán McNamara2012-04-051-1/+0
|
* Improved error reportingStephan Bergmann2012-04-041-2/+1
|
* desktop: use CustomTarget makefileMatúš Kukan2012-04-043-12/+10
|
* reorganize trickier staticsCaolán McNamara2012-04-021-3/+3
|
* fdo#47963 do not increase height of checkboxesDavid Tardon2012-04-021-3/+0
| | | | Especially as it is obvious the grow is unbounded .-)
* removed duplicate includes in desktop / editengTakeshi Abe2012-03-304-6/+0
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-292-7/+7
|
* fix buildLuboš Luňák2012-03-291-1/+1
|
* desktop: unwind hideous StrTitle mess a littleMichael Meeks2012-03-2911-57/+52
|
* when run under memcheck allow SIGUSR2 to dump current memory allocationsCaolán McNamara2012-03-281-0/+1
|
* drop unused global rtl::OUStringsCaolán McNamara2012-03-281-2/+0
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-282-18/+18
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-281-3/+3
|
* Resolves: rhbz#807316 don't complain that nocrashreport is an unknown optionCaolán McNamara2012-03-271-1/+3
|
* match DB_ENV creation flags to DB creation flagsCaolán McNamara2012-03-232-3/+6
|
* Take a meg off our memory footprintCaolán McNamara2012-03-231-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.
* DbEnv argument is always NULLCaolán McNamara2012-03-233-13/+8
|
* remove duplicate entriesDavid Tardon2012-03-231-9/+0
|
* simplify pagein creationDavid Tardon2012-03-235-21/+8
|
* move Pagein from desktop to gbuildDavid Tardon2012-03-237-128/+14
|
* make ResId->OUString the primary routeCaolán McNamara2012-03-203-77/+76
|
* Resolves rhbz#804437, do not rtl_uString_release(NULL)Stephan Bergmann2012-03-201-1/+4
| | | | ...in case osl_getProcessWorkingDir fails (e.g., if it has been unlinked).
* Fixed spl_component_getFactoryStephan Bergmann2012-03-193-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.
* Workaround a strange wine / mingw crash.Jan Holesovsky2012-03-192-5/+2
|
* soffice.exe must not link against sal3.dll (might fix fdo#44489)Stephan Bergmann2012-03-191-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?)
* Introduced SystemShellExecuteFlags::URIS_ONLYStephan Bergmann2012-03-162-2/+2
|
* fix windows buildMatúš Kukan2012-03-167-14/+35
| | | | No idea if this is proper fix or it needs to be done otherwise.
* fdo#47246: desktop: factor out a winextendloadenv static libraryMichael Stahl2012-03-145-14/+38
|
* fdo#47246: desktop: factor out a winlauncher static libraryMichael Stahl2012-03-149-35/+67
|
* desktop: move lockfile.cxx to libdeploymentmiscMichael Stahl2012-03-126-4/+6
|
* desktop: libsofficeapp shouln't need a main()Michael Stahl2012-03-121-4/+0
|
* fix smoketest - need to check read-only-ness of non-existent pathsMichael Meeks2012-03-121-8/+15
|
* replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák2012-03-122-12/+6
|
* Fix sense of r/o detection code, and clean upStephan Bergmann2012-03-091-18/+14
|
* fdo#40607 - osl_syncFile having written, and avoid doing that on startMichael Meeks2012-03-091-32/+32
|
* remove unused MakefileMatúš Kukan2012-03-091-50/+0
|
* Removed dead defineTakeshi Abe2012-03-091-4/+0
| | | | It died 10 years ago: 85c2755e16883d581db39b317b8c152b551da5ba
* desktop: do not complain about soffice command line options:Michael Stahl2012-03-081-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.
* Resolves: rhbz#800272 complain about unknown command-line optionsCaolán McNamara2012-03-064-1/+28
|
* Also bypass definitions of functions not used on Android or iOSTor Lillqvist2012-03-021-2/+3
|
* migrateSettingsIfNecessary must be called later after allStephan Bergmann2012-03-023-26/+28
| | | | ...once e.g. UCB is already initialized, as the invoked migration services use it.
* Clean upStephan Bergmann2012-03-021-88/+19
|
* Move migrateSettingsIfNecessary into create_user_installStephan Bergmann2012-03-013-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.