summaryrefslogtreecommitdiff
path: root/sal
AgeCommit message (Collapse)AuthorFilesLines
2011-07-21use SAL_WARN_UNUSED_RESULTCaolán McNamara4-5/+5
2011-07-21add a _attribute__((warn_unused_result)) based macroCaolán McNamara1-0/+12
2011-07-16Simplify osl_getTempDirURL()feature/layoutFrancois Tigeot1-33/+9
Do not return different values depending on the platform
2011-07-15Android build fixesTor Lillqvist2-3/+5
2011-07-15iOS hacking, intermediate commitTor Lillqvist1-14/+44
2011-07-15Add a property for the UIWindow and show itTor Lillqvist1-0/+7
2011-07-15Include the rest of the active sal cppunit tests for iOSTor Lillqvist8-27/+24
2011-07-14Use MSVC options only with MSVCTor Lillqvist2-18/+2
2011-07-14No point building xml2cmp when cross-compilingTor Lillqvist1-1/+1
2011-07-13unused OUString_to_std_stringCaolán McNamara1-8/+0
2011-07-12Remove component_getImplementationEnvironmentMatúš Kukan3-9/+0
2011-07-11unused methodsCaolán McNamara4-76/+0
2011-07-11callcatcher: unused methodsCaolán McNamara2-202/+0
2011-07-11Make iOS sal unit testing actually workTor Lillqvist4-4/+28
We must call the initialize() methods of the plugins which for iOS aren't actually plugins in the sense of being dynamically loaded, but still. Unfortunately this means we have to list the plugin interface getter functions explicitly in the sal_cppunittester_all source.
2011-07-10Remove accidentally committed debugging printoutTor Lillqvist1-2/+0
2011-07-10Do build sal unit tests for iOS, tooTor Lillqvist26-73/+92
We can't run them in the normal way, but we build the tests as static archives, which we link into the single sal_cppunittester_all executable. (Work in progress, so far just a part of the tests are linked into it.) There is no makefilery yet to actually construct a complete iOS app bundle (.app directory), so just copy (in this case) the sal_cppunittester_all iOS executable on top of the executbale some dummy iOS app you build in Xcode... works fine, can be debugged that way.
2011-07-10No <sys/statfs.h> for iOS eitherTor Lillqvist1-1/+1
2011-07-10No getVolumeInfo tests for iOSTor Lillqvist1-1/+1
2011-07-10iOS is much like MacOSXTor Lillqvist2-3/+5
2011-07-10Add a statically linked unit tester for iOSTor Lillqvist3-0/+190
2011-07-10aTestSec is not used anywhereTor Lillqvist1-1/+0
2011-07-10Don't run cppunittester automatically when cross-compilingTor Lillqvist1-0/+4
2011-07-09sal_main_with_args() is staticTor Lillqvist1-2/+2
2011-07-09iOS hacking for cppunittesterTor Lillqvist3-1/+61
We don't need sal/main.h in salinit.cxx as far as I can see. Add stuff to sal/main.h so that we can link an iOS executable that actually will run, and hack the makefile so that cppunittester builds successfully. Of course, a cppunittester executable built here won't be usable for anything interesting as we don't build any dynamic libraries of LibreOffice code for iOS, so there is nothing to pass on the command line to load. But hey, baby steps, experimentation, doing work in the public, commit often, etc...
2011-07-07workaround sal built with _GLIBCXX_DEBUG and cppunit build without itCaolán McNamara1-0/+1
2011-07-04fix indentCaolán McNamara1-1/+1
2011-07-04change O[U]StringBuffer::remove() to take start+lenLuboš Luňák7-62/+34
In order to be consistent with other usage in LO and C++ libs, instead of being consistent with Java.
2011-07-03callcatcher: secondfunc unusedCaolán McNamara1-4/+0
2011-07-01missing else, *cough*Caolán McNamara1-0/+1
2011-06-30extend CppUnit::Protector for context-less protectionCaolán McNamara2-8/+26
2011-06-30rearrange the cppunittester to allow makeFixture time exceptions catchableCaolán McNamara1-34/+66
2011-06-30callcatcher: various unused fooCaolán McNamara4-494/+0
2011-06-30callcatcher: unused codeCaolán McNamara4-80/+0
2011-06-30add StringBuffers ::removeCaolán McNamara8-7/+212
2011-06-2816-bit Windows is no moreFrancois Tigeot1-2/+0
2011-06-27Remove tgetpwnam.cxx, it is unused.Francois Tigeot2-264/+0
2011-06-23add an OString::equalsL equivalent to OUString::equalsAsciiLCaolán McNamara1-0/+24
2011-06-22remove duplicate codeDavid Tardon1-11/+0
2011-06-21add default arguments to make this less painfulCaolán McNamara1-4/+4
2011-06-20make pthreads osl_setThreadKeyData backend work the same on all OSesCaolán McNamara3-13/+43
2011-06-20add an extra ctor that takes char str+lenCaolán McNamara1-0/+19
2011-06-18Just call the import library -luno_sal for MinGWTor Lillqvist1-1/+1
2011-06-18Add 2 lacking break instructions in a switchJulien Nabet1-0/+2
2011-06-17Clean out cruft from systools and especially uwinapiTor Lillqvist72-6157/+1
2011-06-16Do build cppunittester when cross-compiling after allTor Lillqvist1-4/+0
2011-06-14catch by const referenceCaolán McNamara7-8/+8
2011-06-14Fix SAL_MATH_FINITE definition for iOSTor Lillqvist1-1/+9
2011-06-14Do define SAL_DLLEXTENSION properly for iOS, tooTor Lillqvist1-1/+7
Do it even if it can never be used successfully in an iOS app anyway, as they are not supposed to load dynamic libraries (except system ones).
2011-06-09INCLUDE_BACKTRACE is on for Intel MacOSXTor Lillqvist1-1/+1
2011-06-09First attempt at Android supportTor Lillqvist9-13/+54