Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-16 | convert tabs to spaces | David Tardon | |
2012-04-14 | oosplash: handle SIGTERM by killing soffice.bin | Michael Stahl | |
2012-04-10 | Resolves: fdo#31022 about dialog is suboptimal | Andrew Higginson | |
2012-04-09 | enforce only one possible use of gb_CustomTarget | Matúš Kukan | |
This brings two changes: - no more recursive calling of make - gbuild_simple is now not used => removed | |||
2012-04-09 | add package deps for resources | David Tardon | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | gbuild: "use" vs. "add": | Michael Stahl | |
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) | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *) *{$/\1\2 ( \3 == \4 ) {/' \{\} \; | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-05 | Fix Prefer prefix ++/-- operators | Julien Nabet | |
Includes too replacement < by != for comparison between current and end iterators | |||
2012-04-05 | DEFINE_CONST_UNICODE isn't needed here anymore | Caolán McNamara | |
2012-04-05 | unused U2S define | Caolán McNamara | |
2012-04-04 | Improved error reporting | Stephan Bergmann | |
2012-04-04 | desktop: use CustomTarget makefile | Matúš Kukan | |
2012-04-02 | reorganize trickier statics | Caolán McNamara | |
2012-04-02 | fdo#47963 do not increase height of checkboxes | David Tardon | |
Especially as it is obvious the grow is unbounded .-) | |||
2012-03-30 | removed duplicate includes in desktop / editeng | Takeshi Abe | |
2012-03-29 | remove static OUStrings from static_initialization_and_destruction chain | Caolán McNamara | |
2012-03-29 | fix build | Luboš Luňák | |
2012-03-29 | desktop: unwind hideous StrTitle mess a little | Michael Meeks | |
2012-03-28 | when run under memcheck allow SIGUSR2 to dump current memory allocations | Caolán McNamara | |
2012-03-28 | drop unused global rtl::OUStrings | Caolán McNamara | |
2012-03-28 | remove static OUStrings from static_initialization_and_destruction chain | Caolán McNamara | |
2012-03-28 | remove static OUStrings from static_initialization_and_destruction chain | Caolán McNamara | |
2012-03-27 | Resolves: rhbz#807316 don't complain that nocrashreport is an unknown option | Caolán McNamara | |
2012-03-23 | match DB_ENV creation flags to DB creation flags | Caolán McNamara | |
2012-03-23 | Take a meg off our memory footprint | Caolán McNamara | |
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-23 | DbEnv argument is always NULL | Caolán McNamara | |
2012-03-23 | remove duplicate entries | David Tardon | |
2012-03-23 | simplify pagein creation | David Tardon | |
2012-03-23 | move Pagein from desktop to gbuild | David Tardon | |
2012-03-20 | make ResId->OUString the primary route | Caolán McNamara | |
2012-03-20 | Resolves rhbz#804437, do not rtl_uString_release(NULL) | Stephan Bergmann | |
...in case osl_getProcessWorkingDir fails (e.g., if it has been unlinked). | |||
2012-03-19 | Fixed spl_component_getFactory | Stephan 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-19 | Workaround a strange wine / mingw crash. | Jan Holesovsky | |
2012-03-19 | soffice.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-16 | Introduced SystemShellExecuteFlags::URIS_ONLY | Stephan Bergmann | |
2012-03-16 | fix windows build | Matúš Kukan | |
No idea if this is proper fix or it needs to be done otherwise. | |||
2012-03-14 | fdo#47246: desktop: factor out a winextendloadenv static library | Michael Stahl | |
2012-03-14 | fdo#47246: desktop: factor out a winlauncher static library | Michael Stahl | |
2012-03-12 | desktop: move lockfile.cxx to libdeploymentmisc | Michael Stahl | |
2012-03-12 | desktop: libsofficeapp shouln't need a main() | Michael Stahl | |
2012-03-12 | fix smoketest - need to check read-only-ness of non-existent paths | Michael Meeks | |
2012-03-12 | replace usage of OUString::replace*AsciiL() with string literal overloads | Luboš Luňák | |
2012-03-09 | Fix sense of r/o detection code, and clean up | Stephan Bergmann | |
2012-03-09 | fdo#40607 - osl_syncFile having written, and avoid doing that on start | Michael Meeks | |
2012-03-09 | remove unused Makefile | Matúš Kukan | |
2012-03-09 | Removed dead define | Takeshi Abe | |
It died 10 years ago: 85c2755e16883d581db39b317b8c152b551da5ba |