Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-12 | removed dead code | Takeshi Abe | |
2012-04-12 | removed useless static data | Takeshi Abe | |
2012-04-12 | removed unused defines | Takeshi Abe | |
2012-04-10 | fix tinderbox | Caolán McNamara | |
2012-04-10 | Resolves: fdo#31022 about dialog is suboptimal | Andrew Higginson | |
2012-04-10 | char[] -> const char[]. | Jan Holesovsky | |
2012-04-10 | removed unused defines | Takeshi Abe | |
2012-04-10 | removed OS/2 one | Takeshi Abe | |
2012-04-09 | add package deps for resources | David Tardon | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | LinkTarget.mk: remove gb_LinkTarget_add_package_headers | Michael Stahl | |
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 | SfxViewShell::GetScrollingMode always returns SCROLLING_DEFAULT | Ivan Timofeev | |
2012-04-05 | fdo#43895 lp#905355: fix the fix so it doesn't crash | Michael Stahl | |
rtl::OUString rtl::OUString::copy(sal_Int32) const: Assertion `beginIndex >= 0 && beginIndex <= getLength()' failed. (regression from dd2fe95cce75f1157bd1c75d286a0047b2e4175e) | |||
2012-04-05 | removed unused defines | Takeshi Abe | |
2012-04-03 | fdo#44698 settings are under a different menu in Mac OS X | Andras Timar | |
2012-04-02 | fdo#34324 - fix colorspace conversion for greyscale bitmaps | Michael Meeks | |
2012-04-02 | Remove unused HTMLMODE_FIRSTLINE | Harri Pitkänen | |
HTMLMODE_FIRSTLINE was disabled in all HTML export modes. It seems to have been used to add first line indent for paragraphs in Netscape version 3 but all currently available export modes use CSS for that. | |||
2012-03-30 | Correct method name in warning message | Tor Lillqvist | |
2012-03-30 | removed duplicate includes in sfx2 | Takeshi Abe | |
2012-03-30 | remove static OUStrings from static_initialization_and_destruction chain | Caolán McNamara | |
2012-03-29 | add for calc extra paste ctx menu with options to paste text or formula only | Noel Power | |
2012-03-27 | fdo#43895 lp#905355: Never let users save in /tmp by default | Andrzej J. R. Hunt | |
2012-03-23 | .mm files don't need executable bits | Michael Stahl | |
2012-03-23 | .rdf files don't need executable bits | Michael Stahl | |
2012-03-23 | .sdw files don't need executable bits | Michael Stahl | |
2012-03-23 | README files don't need executable bits | Michael Stahl | |
2012-03-23 | .stw files don't need executable bits | Michael Stahl | |
2012-03-23 | .sdi files don't need executable bits | Michael Stahl | |
2012-03-23 | .xcl files don't need executable bits | Michael Stahl | |
2012-03-23 | .sce files don't need executable bits | Michael Stahl | |
2012-03-23 | .component files don't need executable bits | Michael Stahl | |
2012-03-23 | .hrc files don't need executable bits | Michael Stahl | |
2012-03-23 | .h files don't need executable bits | Michael Stahl | |
2012-03-23 | .java files don't need executable bits | Michael Stahl | |
2012-03-23 | we dont' need any SvCompatWeakBase use in SfxMedium AKAICS | Caolán McNamara | |
2012-03-23 | overly static lingering OUStrings | Caolán McNamara | |
2012-03-22 | don't need to check for null before delete | Markus Mohrhard | |
2012-03-21 | chmod -x | Tor Lillqvist | |
2012-03-20 | remove extra string casts | Caolán McNamara | |
2012-03-20 | split macros to elide unneeded methods | Caolán McNamara | |
2012-03-16 | Introduced SystemShellExecuteFlags::URIS_ONLY | Stephan Bergmann | |
2012-03-14 | Enable -Wnon-virtual-dtor for GCC 4.6 | Stephan Bergmann | |
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed. | |||
2012-03-14 | we just want to know if its a directory/folder or not | Caolán McNamara | |
2012-03-12 | WaE: comparison between signed and unsigned integer expressions | David Tardon | |
2012-03-10 | gbuild: get rid of realpath in gb_Foo_set_include | Matúš Kukan | |