diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-05-13 21:01:33 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-05-14 07:05:40 +0200 |
commit | d07f9e4d4ac6fb4d9074605b034e81cb7353f417 (patch) | |
tree | 0368417ef0a7341f8f6715a25a2e0fb76b338a09 /o3tl | |
parent | 96337c845c026236975d6a8af52867a5e8d28430 (diff) |
Fix typo
Change-Id: I87fce20463564fe9b32912fcbaf691c1c2839e2b
Reviewed-on: https://gerrit.libreoffice.org/54201
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'o3tl')
-rw-r--r-- | o3tl/qa/test-sorted_vector.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/o3tl/qa/test-sorted_vector.cxx b/o3tl/qa/test-sorted_vector.cxx index 2a1f87d93dc8..3de3f005f6c6 100644 --- a/o3tl/qa/test-sorted_vector.cxx +++ b/o3tl/qa/test-sorted_vector.cxx @@ -44,7 +44,7 @@ public: SwContent *p3 = new SwContent(3); std::unique_ptr<SwContent> p4( new SwContent(4) ); - // insert p3, p1 -> not presernt -> second is true + // insert p3, p1 -> not present -> second is true CPPUNIT_ASSERT( aVec.insert(p3).second ); CPPUNIT_ASSERT( aVec.insert(p1.get()).second ); // insert p3 again -> already present -> second is false |