summaryrefslogtreecommitdiffstats
path: root/basic
Commit message (Collapse)AuthorAgeFilesLines
* add missing licence ( populated from TEMPLATE.SOURCECODE.HEADER )Noel Power2012-05-142-0/+14
| | | | Change-Id: I088e8fef273a42ad3e1d87d249a998867c22b4c6
* Revert "attempt to disable multi-defined symbol on windows for basic test"Michael Stahl2012-05-141-2/+1
| | | | | | | Let's hope this works now. This reverts commit 6113b27ec15da2a3b140ae58676062d74c99b31e. This reverts commit 4e90345a4dea1ddf0ddded4f1fcae1c87894e120.
* CppunitTest_basic_enable does not seem to need library objectsMichael Stahl2012-05-141-2/+0
| | | | and it apparently causes linking failures on Windows, so try without.
* fix missing ')' in Module.basic.mkNoel Power2012-05-141-1/+1
| | | | Change-Id: I2a9eb4d5c6e8dfea2aaf9b8667d3e3de7b1357fe
* attempt to disable multi-defined symbol on windows for basic testNoel Power2012-05-141-1/+2
| | | | | | CppunitTest_basic_enable.mk & test_basic_enable.dll seems to suffer for some strange multiple defined symbol crack which is killing the tinderboxes, disable for the moment Change-Id: I1584c11a0445ac36c138ae075ca365ad4b2effe1
* add simple basic runtime testNoel Power2012-05-142-10/+27
| | | | Change-Id: If8742cb174aa1d017763d3ba42807ac4cf6c7420
* simple compile test for use of 'Enable' in a Dim statementNoel Power2012-05-143-0/+137
| | | | Change-Id: I051dbb5cd56fe61e2b0aea1184dcdb03c6413834
* EasyHack fdo#42783: get rid of CPU define/build system variableThomas Collerton2012-05-091-4/+4
| | | | Change-Id: I6a178f7ff9c8306e15bcfa847ad1e5e4f8476504
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-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
* WaE: return SYMBOL -> return trueCaolán McNamara2012-04-241-1/+1
| | | | | has been return SYMBOL since initial checkin in 2000, SYMBOL is a non-0 enum so return true here instead
* Fix eleven year old typoTor Lillqvist2012-04-241-1/+1
| | | | | No idea if it has actually caused any uninteded behaviour, or if this fix now then causes something to break.
* This incorporates the suggested changes.Abeer Sethi2012-04-231-1/+1
|
* WaE: MSVC2008 C2220 unsafe mix of types in operationCaolán McNamara2012-04-202-5/+7
|
* made the search straightforwardTakeshi Abe2012-04-131-5/+7
|
* extract ImpGetIntntlSep() into sbxconv.hxx and reuse itTakeshi Abe2012-04-133-11/+5
|
* String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara2012-04-103-15/+12
|
* add package deps for resourcesDavid Tardon2012-04-091-0/+7
|
* Replaced a few equal calls with ==Szabolcs Dezsi2012-04-083-5/+5
|
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-081-1/+1
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-082-7/+7
| | | | | | | | | 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)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-063-11/+7
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-2/+2
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* reorganize trickier staticsCaolán McNamara2012-04-021-12/+10
|
* remove static objects from static_initialization_and_destruction chainCaolán McNamara2012-04-021-13/+13
|
* callcatcher: remove some unused codeCaolán McNamara2012-04-021-20/+2
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-301-2/+2
|
* removed duplicate includes in avmedia / basic / canvas / chart2 / comphelperTakeshi Abe2012-03-283-9/+0
|
* removed duplicate includes in basic / canvas / chart2 / comphelperTakeshi Abe2012-03-261-5/+0
|
* .component files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .hrc files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* over-engineered thread-safe static OUStringCaolán McNamara2012-03-221-10/+1
| | | | | | | | | This is a ridiculous over-engineered thread-safe static string for something which is called so few times, and costs 1k of long-term memory as the OUString dtor needs to be put into a callback queue to get called at module unload time. Just return a new string every time, *rolls eyes*
* remove ToDouble/ToFloatCaolán McNamara2012-03-204-4/+1
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-142-0/+6
| | | | | | | | | | | | | | ...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.
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-103-5/+5
|
* fix error comparing a struct vs an uno prop containing a struct fdo#42819Noel Power2012-03-093-9/+20
| | | | hack to fix the scenario where sometimes we get "Object required" error when comparing an uno property containing a struct with another struct ( if that property is "MAYBEVOID" )
* state *what* was not found when throwing exceptionCaolán McNamara2012-03-081-4/+6
|
* these Links either shouldn't be links, or shouldn't existCaolán McNamara2012-03-081-18/+0
|
* Removed unused macroTakeshi Abe2012-03-082-7/+0
|
* more idle code documentation improvementMichael Meeks2012-03-061-1/+5
|
* Removed useless #ifdef guardTakeshi Abe2012-03-061-5/+1
|
* basic: add missing forward declarations for helper functionsMichael Meeks2012-03-052-1/+5
|
* Remove unused SbxMemoryStreamTor Lillqvist2012-03-053-94/+0
|
* Sprinkle more DISABLE_SCRIPTING ifdefsTor Lillqvist2012-03-058-124/+185
|
* Change my mind again: Do build a subset sb library even for DISABLE_SCRIPTINGTor Lillqvist2012-03-052-5/+12
| | | | The tables functionality in Writer documents need SbxValue.
* Remove unused code from basicElton Chung2012-03-054-104/+0
|
* Convert SbxFactory from SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin2012-03-053-15/+14
|
* Revert "Build libsb with a few dummy classes also for --disable-scripting"Tor Lillqvist2012-03-054-646/+1
| | | | | | | Nah, these dummy classes would turn out quite complex anyway. Better to just use ifdefs elsewhere, the number required is not that large. This reverts commit 6d33801b4498f5c13d2dc75588f88c22a11f455b.
* Build libsb with a few dummy classes also for --disable-scriptingTor Lillqvist2012-03-014-1/+646
| | | | | | | | Work in progress, the dummy class implementations surely still incomplete and/or might contain methods not actually needed. More dummy class implementations needed, hopefully not too many though. Will add also a few ifdefs for DISABLE_SCRIPTING in some key places in sc and elsewhere to cut down on the need.
* s/interpreters/scripting/Tor Lillqvist2012-02-271-1/+1
|
* Decouple disabling of scripting (BASIC &co) from OS being iOSTor Lillqvist2012-02-271-1/+1
|