diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-01-14 15:52:58 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-01-14 16:04:43 +0100 |
commit | 55b7d15ae984d4ff772e147414c775d2ad69c9f0 (patch) | |
tree | 083f3bb2e6fafcf9bfd0230e5a7bc5d95618fab6 /sw/qa | |
parent | bf670bcd5e60eae95a6bd297391799f13e55db9d (diff) |
SwPaM::HasReadonlySel: sal_Bool -> bool
Change-Id: If4c9cb523c6ac357683522029769a82ba10667f1
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/core/swdoc-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/core/swdoc-test.cxx b/sw/qa/core/swdoc-test.cxx index f2cc9ccde8ea..189a25cf2476 100644 --- a/sw/qa/core/swdoc-test.cxx +++ b/sw/qa/core/swdoc-test.cxx @@ -893,7 +893,7 @@ void SwDocTest::testFdo57938() aPaM.GetPoint()->nContent = 0; aPaM.GetMark()->nContent = 1; // The problem was that "a" was considered read-only, so could not be deleted. - CPPUNIT_ASSERT_EQUAL(false, bool(aPaM.HasReadonlySel(false))); + CPPUNIT_ASSERT_EQUAL(false, aPaM.HasReadonlySel(false)); } void SwDocTest::setUp() |