summaryrefslogtreecommitdiff
path: root/sw/source/filter/ascii
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-08-12 11:40:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-08-12 12:19:43 +0200
commit3dafed2edee8fe6e75b328f13d79014b611e7acf (patch)
treedbc47a283e0d7f2e4dfae35c7c2707093b45fa85 /sw/source/filter/ascii
parent20c0aaf75f2923bb7a00dc628b88c878073b8e19 (diff)
-Werror,-Wundefined-bool-conversion
Change-Id: Iff8db4c82abeeed0789d7012223a846f1058c353
Diffstat (limited to 'sw/source/filter/ascii')
-rw-r--r--sw/source/filter/ascii/parasc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ascii/parasc.cxx b/sw/source/filter/ascii/parasc.cxx
index 1047a6a9b554..7265d8ef5e26 100644
--- a/sw/source/filter/ascii/parasc.cxx
+++ b/sw/source/filter/ascii/parasc.cxx
@@ -73,7 +73,7 @@ sal_uLong AsciiReader::Read( SwDoc &rDoc, const OUString&, SwPaM &rPam, const OU
{
if( !pStrm )
{
- OSL_ENSURE( !this, "ASCII read without a stream" );
+ OSL_ENSURE( false, "ASCII read without a stream" );
return ERR_SWG_READ_ERROR;
}
@@ -229,7 +229,7 @@ sal_uLong SwASCIIParser::CallParser()
pInsPam->GetCntntNode(), nSttCntnt );
// !!!!!
- OSL_ENSURE( !this, "Have to change - hard attr. to para. style" );
+ OSL_ENSURE( false, "Have to change - hard attr. to para. style" );
pDoc->getIDocumentContentOperations().InsertItemSet( *pInsPam, *pItemSet, 0 );
}
}