summaryrefslogtreecommitdiff
path: root/vbahelper
AgeCommit message (Collapse)AuthorFilesLines
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
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-28typos fixingKorrawit Pruegsanusak1-1/+1
2011-11-27remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud2-8/+0
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen1-1/+1
2011-11-16tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud1-4/+4
This allow to run make in a module wihtout the need to source Env.Host.sh.
2011-11-16replaced String in SfxPickList with rtl::OUStringTakeshi Abe1-1/+1
this consists of 12df49396e6bcb07bafc95255a8526caac96e60a and related changes
2011-10-07WaE: class has virtual functions, but destructor is not virtualTor Lillqvist1-0/+1
2011-10-07WaE: unreachable codeTor Lillqvist1-13/+13
Interesting use of for loops with the body of the loop returning unconditionally.
2011-10-05simplfy dmake to gbuild bridgefileBjoern Michaelsen1-40/+1
2011-10-01d.lst should be empty in gbuildized modulesMatúš Kukan1-1/+0
2011-09-30add mode-lines to .m files and last round of merged files, etc.Caolán McNamara3-0/+9
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara2-1/+4
2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold1-1/+1
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
2011-09-17drop makefile.mkCaolán McNamara1-100/+0
2011-09-06WaE: unused variableCaolán McNamara1-6/+6
2011-09-05unusedcode: vbahelper::CollectionBase classMatúš Kukan4-548/+0
2011-08-26catch by const refCaolán McNamara1-7/+7
2011-08-23WaE: drop unused ctor argumentCaolán McNamara3-5/+3
2011-08-23merge foobars? fix broken MultiPage api, also fix broken api change eventsNoel Power3-2/+2
2011-08-19detect gmake 3.81 and limit to -j1 unless num-cpu is explicitly setNorbert Thiebaud1-1/+1
2011-08-16Keep the container and object separate methods.Kohei Yoshida1-1/+1
ScVbaControl doesn't have any container instance to pass to the old method.
2011-08-16Added XPropertySet2 to allow disabling of change event notifications.Kohei Yoshida1-1/+1
Sometimes broadcasting changes to the property set on every new value insertion makes no sense especially during import. Turning that off also improves performance especially when inserting millions of property values.
2011-08-10prefer makefile-gmake-mode to plain makefile-modeTakeshi Abe5-4/+4