summaryrefslogtreecommitdiff
path: root/sw/source/ui/dbui/mailmergehelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/dbui/mailmergehelper.cxx')
-rw-r--r--sw/source/ui/dbui/mailmergehelper.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/ui/dbui/mailmergehelper.cxx b/sw/source/ui/dbui/mailmergehelper.cxx
index 82b6876a341f..83847af76163 100644
--- a/sw/source/ui/dbui/mailmergehelper.cxx
+++ b/sw/source/ui/dbui/mailmergehelper.cxx
@@ -192,7 +192,7 @@ uno::Reference< mail::XSmtpService > ConnectToSmtpServer(
}
catch(uno::Exception& )
{
- DBG_ERROR("exception caught")
+ DBG_ERROR("exception caught");
}
return xSmtpServer;
}
@@ -286,7 +286,7 @@ void SwAddressPreview::SetAddress(const ::rtl::OUString& rAddress)
-----------------------------------------------------------------------*/
sal_uInt16 SwAddressPreview::GetSelectedAddress()const
{
- DBG_ASSERT(pImpl->nSelectedAddress < pImpl->aAdresses.size(), "selection invalid")
+ DBG_ASSERT(pImpl->nSelectedAddress < pImpl->aAdresses.size(), "selection invalid");
return pImpl->nSelectedAddress;
}
/*-- 25.06.2004 10:32:48---------------------------------------------------
@@ -294,7 +294,7 @@ sal_uInt16 SwAddressPreview::GetSelectedAddress()const
-----------------------------------------------------------------------*/
void SwAddressPreview::SelectAddress(sal_uInt16 nSelect)
{
- DBG_ASSERT(pImpl->nSelectedAddress < pImpl->aAdresses.size(), "selection invalid")
+ DBG_ASSERT(pImpl->nSelectedAddress < pImpl->aAdresses.size(), "selection invalid");
pImpl->nSelectedAddress = nSelect;
// now make it visible..
sal_uInt16 nSelectRow = nSelect / pImpl->nColumns;
@@ -601,7 +601,7 @@ String SwAddressPreview::FillData(
}
catch( sdbc::SQLException& )
{
- DBG_ERROR("SQLException caught")
+ DBG_ERROR("SQLException caught");
}
}
}
@@ -630,7 +630,7 @@ SwMergeAddressItem SwAddressIterator::Next()
{
aRet.bIsColumn = true;
xub_StrLen nClose = sAddress.Search('>');
- DBG_ASSERT(nClose != STRING_NOTFOUND, "closing '>' not found")
+ DBG_ASSERT(nClose != STRING_NOTFOUND, "closing '>' not found");
aRet.sText = sAddress.Copy(1, nClose - 1);
sAddress.Erase(0, nClose + 1);
}