summaryrefslogtreecommitdiff
path: root/basic
AgeCommit message (Collapse)AuthorFilesLines
2012-06-12use rtl_ustr_getLength instead of a temporary string just to find lengthCaolán McNamara1-3/+2
Change-Id: Ibbf777e57af6b98611cb5dce5a31517de80305b7
2012-06-11remove EraseLeadingChars and EraseTrailingCharsCaolán McNamara2-10/+6
Change-Id: Ib9797fe97cd008cc6508ce8cec47dc5373416892
2012-06-09Remove superfluous empty lines on topThomas Arnhold3-6/+0
More than two lines are removed for readability. Change-Id: Ibff6cf68d7c512e240a54065b54a225bb23a782b
2012-06-06drop String::ReverseCaolán McNamara1-2/+2
Change-Id: Ie06635dc1f242241d48f9d6de4f592898e605bf2
2012-06-06fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin1-5/+2
Update code to use factory method PathSubstitutions::create Change-Id: I3721bd93c36b207d849eea19102f5ac61cadd205 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
2012-06-06fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin7-73/+69
Update calls to factories to use new SimpleFileAccess::create method Change-Id: Ie5b0696fe2228a9033b19969245a53c21a61aa14 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
2012-06-02targeted string re-workNorbert Thiebaud1-2/+2
Change-Id: Ia73452f1cc83eff144e692c5ec19048c4ce0ca60
2012-06-02targeted string re-workNorbert Thiebaud7-105/+105
Change-Id: Ia651a93951da514105183775a5f49d031a192937
2012-05-31targetted misc. minor cppcheck cleanups reversionMichael Meeks1-1/+1
Change-Id: Ic7f91c035d3e7f0e792d2e9ab217e1fc4ebcf697
2012-05-31nuke unused typedefTakeshi Abe1-2/+0
Change-Id: I8848d0e687c3b19be1a8bc1f41c2a0c94e13bbbf
2012-05-14add missing licence ( populated from TEMPLATE.SOURCECODE.HEADER )Noel Power2-0/+14
Change-Id: I088e8fef273a42ad3e1d87d249a998867c22b4c6
2012-05-14Revert "attempt to disable multi-defined symbol on windows for basic test"Michael Stahl1-2/+1
Let's hope this works now. This reverts commit 6113b27ec15da2a3b140ae58676062d74c99b31e. This reverts commit 4e90345a4dea1ddf0ddded4f1fcae1c87894e120.
2012-05-14CppunitTest_basic_enable does not seem to need library objectsMichael Stahl1-2/+0
and it apparently causes linking failures on Windows, so try without.
2012-05-14fix missing ')' in Module.basic.mkNoel Power1-1/+1
Change-Id: I2a9eb4d5c6e8dfea2aaf9b8667d3e3de7b1357fe
2012-05-14attempt to disable multi-defined symbol on windows for basic testNoel Power1-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
2012-05-14add simple basic runtime testNoel Power2-10/+27
Change-Id: If8742cb174aa1d017763d3ba42807ac4cf6c7420
2012-05-14simple compile test for use of 'Enable' in a Dim statementNoel Power3-0/+137
Change-Id: I051dbb5cd56fe61e2b0aea1184dcdb03c6413834
2012-05-09EasyHack fdo#42783: get rid of CPU define/build system variableThomas Collerton1-4/+4
Change-Id: I6a178f7ff9c8306e15bcfa847ad1e5e4f8476504
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-24WaE: return SYMBOL -> return trueCaolán McNamara1-1/+1
has been return SYMBOL since initial checkin in 2000, SYMBOL is a non-0 enum so return true here instead
2012-04-24Fix eleven year old typoTor Lillqvist1-1/+1
No idea if it has actually caused any uninteded behaviour, or if this fix now then causes something to break.
2012-04-23This incorporates the suggested changes.Abeer Sethi1-1/+1
2012-04-20WaE: MSVC2008 C2220 unsafe mix of types in operationCaolán McNamara2-5/+7
2012-04-13made the search straightforwardTakeshi Abe1-5/+7
2012-04-13extract ImpGetIntntlSep() into sbxconv.hxx and reuse itTakeshi Abe3-11/+5
2012-04-10String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara3-15/+12
2012-04-09add package deps for resourcesDavid Tardon1-0/+7
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi3-5/+5
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl1-1/+1
2012-04-08gbuild: "use" vs. "add":Michael Stahl2-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)
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi3-11/+7
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-2/+2
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-02reorganize trickier staticsCaolán McNamara1-12/+10
2012-04-02remove static objects from static_initialization_and_destruction chainCaolán McNamara1-13/+13
2012-04-02callcatcher: remove some unused codeCaolán McNamara1-20/+2
2012-03-30remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-2/+2
2012-03-28removed duplicate includes in avmedia / basic / canvas / chart2 / comphelperTakeshi Abe3-9/+0
2012-03-26removed duplicate includes in basic / canvas / chart2 / comphelperTakeshi Abe1-5/+0
2012-03-23.component files don't need executable bitsMichael Stahl1-0/+0
2012-03-23.hrc files don't need executable bitsMichael Stahl1-0/+0
2012-03-22over-engineered thread-safe static OUStringCaolán McNamara1-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*
2012-03-20remove ToDouble/ToFloatCaolán McNamara4-4/+1
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2-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.
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan3-5/+5
2012-03-09fix error comparing a struct vs an uno prop containing a struct fdo#42819Noel Power3-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" )
2012-03-08state *what* was not found when throwing exceptionCaolán McNamara1-4/+6
2012-03-08these Links either shouldn't be links, or shouldn't existCaolán McNamara1-18/+0
2012-03-08Removed unused macroTakeshi Abe2-7/+0
2012-03-06more idle code documentation improvementMichael Meeks1-1/+5
2012-03-06Removed useless #ifdef guardTakeshi Abe1-5/+1