Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-29 | make gbuild the default assumption of build.pl | Bjoern Michaelsen | |
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b | |||
2012-04-24 | tweak support Sheets.PrintPreview bnc#75784 allow specific sheet(s) selection | Noel Power | |
this is a followup to commit 17c8f6745f9f98013c1b08de8ec03be66546c7fc | |||
2012-04-23 | removed unused static data | Takeshi Abe | |
2012-04-23 | support Sheets.PrintPreview bnc#757844 | Noel Power | |
there is still a little wrinkle, the preview shell always shows what sheets are selected, it's currently not possible to specify the sheets to preview | |||
2012-04-17 | add support for MousePointer attribute in controls | Noel Power | |
For Useforms it doesn't quite work exactly as MSO, for examply if we set the MousePointer for the Userform it works as expected until we mouse over another control at which point the mouse pointer is changed to that of the control. In MSO it would appear that the Userform mousepointer is king, perhaps all that is necessary is to apply the mouse pointer to each contained control, needs some investigation. Also only a limited number of the possible mouse pointer styles are processed, the conversions of mso -> lo pointer styles ( and vice-versa ) and not really tested to see if they all make sense | |||
2012-04-12 | Set DefaultContext property of service manager/component context combo | Stephan Bergmann | |
...to avoid mismatch warnings from OServiceManager::createInstanceWithContext. | |||
2012-04-10 | Kill vbaFontBase::get/setUnderline | Gábor Stefanik | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | Dump MarkManager::dumpFieldmarks + extractIntFromAny from vbahelper | Julien Nabet | |
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-04 | removed duplicate #includes | Takeshi Abe | |
in vbahelper / writerfilter / writerperfect / xmlhelp / xmloff / xmlscript / xmlsecurity | |||
2012-04-02 | remove static objects from static_initialization_and_destruction chain | Caolán McNamara | |
2012-03-29 | remove static OUStrings from static_initialization_and_destruction chain | Caolán McNamara | |
2012-03-28 | unused global OUString | Caolán McNamara | |
2012-03-26 | reduce over use of static OUStrings | Caolán McNamara | |
2012-03-23 | .component files don't need executable bits | Michael Stahl | |
2012-03-23 | .h files don't need executable bits | Michael Stahl | |
2012-03-21 | chmod -x | Tor Lillqvist | |
2012-03-20 | correct exception specification on a function | Luboš Luňák | |
It's obvious that the function above is called by this one, and the exception it throws cannot really propagate. The solution to this mystery is the fact that msvc doesn't give a damn, and gcc does not either since OOo has used -fno-enforce-sh-specs since 2001. But clang does, so fix this for now, although it should possibly be just dumped. | |||
2012-03-20 | Fix WaE : Add call to ScVbaControl::getForeColor() | Julien Nabet | |
2012-03-20 | More missing SAL_CALL | Stephan Bergmann | |
2012-03-20 | Missing SAL_CALL | Stephan Bergmann | |
2012-03-20 | add vba support for BackColor, AutoSize, Locked attributes bnc#749960 | Noel Power | |
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-12 | SAL_DLLPUBLIC_TEMPLATE | Luboš Luňák | |
On Linux, public templates should not be hidden at the linker level. But on Windows, dllimport causes trouble. So create a new macro to be used specifically with templates that does the right thing on both platforms. (http://lists.freedesktop.org/archives/libreoffice/2012-March/028041.html and followups) | |||
2012-03-10 | exported templates need to be marked as such | Luboš Luňák | |
Otherwise their instances created in other modules may end up as non-exported even when used by something exported. | |||
2012-03-08 | Removed unused code. | Santiago Martinez | |
2012-03-05 | support import of key shortcut for macro ( Excel only ) | Noel Power | |
2012-03-05 | vba implementation for Application.OnKey | Noel Power | |
2012-03-01 | New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problem | Stephan Bergmann | |
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem. | |||
2012-02-27 | s/interpreters/scripting/ | Tor Lillqvist | |
2012-02-27 | Decouple disabling of scripting (BASIC &co) from OS being iOS | Tor Lillqvist | |
2012-02-17 | Fix "never read" reported by clang | Julien Nabet | |
2012-02-05 | switch to include-based build rather than sourced-based build | Norbert Thiebaud | |
2012-02-05 | Remove unused code | Elton Chung | |
2012-02-05 | Remove unused code. | Elton Chung | |
2012-01-28 | Fix for fdo43460 Part LVI getLength() to isEmpty() | Olivier Hallot | |
Part LVI Modules vbahelper | |||
2012-01-27 | Do deliver headers also for iOS even if we don't build the libs | Tor Lillqvist | |
2012-01-27 | Bypass building BASIC and scripting related modules for iOS | Tor Lillqvist | |
Any LO-based app distributed through the App Store can't have scripting or extendability anyway. Sure, this will break the build elsewhere because of missing headers. No big deal, I will take care of that eventually. It isn't as if there would anybody else building for iOS anyway, as far as I know. If there is, please make yourself heard. | |||
2012-01-26 | Code cleanup: ( () ) replaced by (()) | Alexander Bergmann | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2011-12-21 | SfxObjectShell may not have a medium | Caolán McNamara | |
2011-12-15 | Removed extra semicolons | Jesse | |
2011-12-07 | in modules, when we have a env we are in stage gbuild | Bjoern Michaelsen | |
2011-12-01 | get rid of class Date and Time default ctor with system time penalty | Eike Rathke | |
2011-11-29 | move reconfigure into gbuild | Bjoern Michaelsen | |
2011-11-28 | typos fixing | Korrawit Pruegsanusak | |