summaryrefslogtreecommitdiff
path: root/desktop
AgeCommit message (Collapse)Author
2012-03-19Fixed spl_component_getFactoryStephan Bergmann
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 Holesovsky
2012-03-19soffice.exe must not link against sal3.dll (might fix fdo#44489)Stephan Bergmann
...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 Bergmann
2012-03-16fix windows buildMatúš Kukan
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 Stahl
2012-03-14fdo#47246: desktop: factor out a winlauncher static libraryMichael Stahl
2012-03-12desktop: move lockfile.cxx to libdeploymentmiscMichael Stahl
2012-03-12desktop: libsofficeapp shouln't need a main()Michael Stahl
2012-03-12fix smoketest - need to check read-only-ness of non-existent pathsMichael Meeks
2012-03-12replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák
2012-03-09Fix sense of r/o detection code, and clean upStephan Bergmann
2012-03-09fdo#40607 - osl_syncFile having written, and avoid doing that on startMichael Meeks
2012-03-09remove unused MakefileMatúš Kukan
2012-03-09Removed dead defineTakeshi Abe
It died 10 years ago: 85c2755e16883d581db39b317b8c152b551da5ba
2012-03-08desktop: do not complain about soffice command line options:Michael Stahl
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 McNamara
2012-03-02Also bypass definitions of functions not used on Android or iOSTor Lillqvist
2012-03-02migrateSettingsIfNecessary must be called later after allStephan Bergmann
...once e.g. UCB is already initialized, as the invoked migration services use it.
2012-03-02Clean upStephan Bergmann
2012-03-01Move migrateSettingsIfNecessary into create_user_installStephan Bergmann
...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 Bergmann
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-29fdo#46434: Always send command line arguments as UTF-8Stephan Bergmann
2012-02-29Resolves: rhbz#788045 swriter --help etc doesn't show helpCaolán McNamara
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 Bergmann
...as the receiving side already takes care of that (using the cwd that is sent first).
2012-02-29Typo bInhibitJavaLdx -> bInhibitPageinStephan Bergmann
2012-02-27fix msvc2005 buildCaolán McNamara
2012-02-27make desktop Bytestring freeCaolán McNamara
2012-02-24android: remove annoying & un-necessary dialog on startMichael Meeks
2012-02-23accumulate into an OStringBufferCaolán McNamara
2012-02-23just link to HelpIndexerCaolán McNamara
2012-02-23Adapted OfficeIPCThread to safer-to-use salhelper::ThreadStephan Bergmann
2012-02-23Moved dp_gui::Thread to salhelper::Thread, so that all code can use itStephan Bergmann
...also improved the code somewhat.
2012-02-22OUString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák
http://lists.freedesktop.org/archives/libreoffice/2012-February/025662.html
2012-02-21WaE: duplicateBranchThomas Arnhold
2012-02-21desktop: Don't call setIniFilename() for LIBO_HEADLESSRiccardo Magliocchetti
mmeeks suggests we don't want setIniFilename(), who am i to disagree? :)
2012-02-20desktop: remove duplicated gb_Library_set_include callRiccardo Magliocchetti
2012-02-20Clean up work around spurious warning about missing JREStephan Bergmann
2012-02-19Get rid of size() == 0Elton Chung
2012-02-18WaE: exec_javaldx defined but not used (javaless build)David Tardon
2012-02-18unusedcode.easy: desktop: singleton_entries is completely unusedThomas Arnhold
2012-02-17Introduce headless switch for X / cairo / toolkit less buildRiccardo Magliocchetti
The plan is to reduce dependencies to be easier to deploy libreoffice server side in headless mode.
2012-02-16disable JRE warnings during help compilation on first startMichael Meeks
2012-02-15remove hideous plasma debugging bits from android branchMichael Meeks
2012-02-15Various string function clean upStephan Bergmann
Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
2012-02-15PLASMA_NOW fixStephan Bergmann
2012-02-15Ifdefify temporary (?) Android hacksTor Lillqvist
2012-02-15Merge branch 'feature/android'Tor Lillqvist
2012-02-14fix layout of checkboxes on Extension Manager dialog fdo#45851Tomcsik Bence
I changed the sizes and the positions of the checkboxes. So there won't be truncated checkboxes in any languages.
2012-02-14Some more comphelper/configurationhelper clean upStephan Bergmann