summaryrefslogtreecommitdiffstats
path: root/tests/auto/qbytearraymatcher
Commit message (Collapse)AuthorAgeFilesLines
* Fixed failure of tst_qbytearraymatcher on 64 bit.Rohan McGovern2010-04-191-1/+1
| | | | | | Code had `sizeof(needle-1)' where `sizeof(needle)-1' was meant. This would pass where sizeof(char*) == 4, but not where sizeof(char*) == 8.
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
| | | | Reviewed-by: Trust Me
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Update tech preview license header.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* Update license headers.Jason McDonald2009-08-111-1/+1
| | | | Reviewed-by: Trust Me
* Update license headers as requested by the marketing department.Jason McDonald2009-06-161-2/+2
| | | | Reviewed-by: Trust Me
* Fixes for QByteArrayMatcherJoão Abecasis2009-04-232-0/+128
Copy constructor and assignment operator lose data: pointer to content and the length of content also need to be copied over. QByteArrayMatcher::pattern() would return a null byte array if instance was initialized with c-string. Changed default constructor to explicitly initialize pattern length to zero. The bug in the assignment operator is a regression against 4.4.3. Task-number: 251958 Reviewed-by: MariusSO Reviewed-by: paul