summaryrefslogtreecommitdiff
path: root/vbahelper
AgeCommit message (Collapse)AuthorFilesLines
2012-05-19Fix Prefer prefix ++/-- operators for non-primitive typesJulien Nabet1-1/+1
Change-Id: I4ebb1027151c3bc34f81fb1e13de6c4c5cfed54d
2012-05-14removed unused static rtl::OUStringTakeshi Abe1-2/+0
Change-Id: I5a097beaaeb30214ed6071bba1297e551291922b
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-1/+0
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-24tweak support Sheets.PrintPreview bnc#75784 allow specific sheet(s) selectionNoel Power2-4/+9
this is a followup to commit 17c8f6745f9f98013c1b08de8ec03be66546c7fc
2012-04-23removed unused static dataTakeshi Abe5-5/+0
2012-04-23support Sheets.PrintPreview bnc#757844Noel Power1-1/+12
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-17add support for MousePointer attribute in controlsNoel Power2-2/+84
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-12Set DefaultContext property of service manager/component context comboStephan Bergmann1-3/+26
...to avoid mismatch warnings from OServiceManager::createInstanceWithContext.
2012-04-10Kill vbaFontBase::get/setUnderlineGábor Stefanik1-62/+0
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi2-27/+14
2012-04-08Dump MarkManager::dumpFieldmarks + extractIntFromAny from vbahelperJulien Nabet2-21/+0
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl1-1/+1
2012-04-08gbuild: "use" vs. "add":Michael Stahl2-4/+4
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-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2-6/+6
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2-3/+3
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-04removed duplicate #includesTakeshi Abe3-3/+0
in vbahelper / writerfilter / writerperfect / xmlhelp / xmloff / xmlscript / xmlsecurity
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara3-20/+21
2012-03-29remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-4/+4
2012-03-28unused global OUStringCaolán McNamara1-1/+0
2012-03-26reduce over use of static OUStringsCaolán McNamara66-157/+121
2012-03-23.component files don't need executable bitsMichael Stahl1-0/+0
2012-03-23.h files don't need executable bitsMichael Stahl1-0/+0
2012-03-21chmod -xTor Lillqvist3-0/+0
2012-03-20correct exception specification on a functionLuboš Luňák1-1/+1
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-20Fix WaE : Add call to ScVbaControl::getForeColor()Julien Nabet1-0/+1
2012-03-20More missing SAL_CALLStephan Bergmann4-4/+4
2012-03-20Missing SAL_CALLStephan Bergmann1-1/+1
2012-03-20add vba support for BackColor, AutoSize, Locked attributes bnc#749960Noel Power16-9/+229
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann1-0/+3
...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-12SAL_DLLPUBLIC_TEMPLATELuboš Luňák1-4/+4
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-10exported templates need to be marked as suchLuboš Luňák1-4/+4
Otherwise their instances created in other modules may end up as non-exported even when used by something exported.
2012-03-08Removed unused code.Santiago Martinez2-42/+0
2012-03-05support import of key shortcut for macro ( Excel only )Noel Power1-27/+1
2012-03-05vba implementation for Application.OnKeyNoel Power2-0/+50
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann1-1/+1
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-02-27s/interpreters/scripting/Tor Lillqvist1-1/+1
2012-02-27Decouple disabling of scripting (BASIC &co) from OS being iOSTor Lillqvist1-1/+1
2012-02-17Fix "never read" reported by clangJulien Nabet1-5/+0
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-02-05Remove unused codeElton Chung4-14/+0
2012-02-05Remove unused code.Elton Chung6-42/+0
2012-01-28Fix for fdo43460 Part LVI getLength() to isEmpty()Olivier Hallot12-30/+30
Part LVI Modules vbahelper
2012-01-27Do deliver headers also for iOS even if we don't build the libsTor Lillqvist1-1/+4
2012-01-27Bypass building BASIC and scripting related modules for iOSTor Lillqvist1-0/+4
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-26Code cleanup: ( () ) replaced by (())Alexander Bergmann1-4/+4
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2011-12-21SfxObjectShell may not have a mediumCaolán McNamara1-1/+2
2011-12-15Removed extra semicolonsJesse1-4/+4
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-01get rid of class Date and Time default ctor with system time penaltyEike Rathke1-2/+2