summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/drawdoc2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/core/drawdoc2.cxx b/sd/source/core/drawdoc2.cxx
index dac47fe62954..f23b9f9cf73e 100644
--- a/sd/source/core/drawdoc2.cxx
+++ b/sd/source/core/drawdoc2.cxx
@@ -231,9 +231,9 @@ void SdDrawDocument::UpdatePageObjectsInNotes(sal_uInt16 nStartPos)
pObj->GetObjInventor() == SdrInventor)
{
// The page object is the preceding page (drawing page)
- DBG_ASSERTWARNING(nStartPos, "Position of notes page must not be 0.");
+ SAL_WARN_IF(!nStartPos, "sd", "Position of notes page must not be 0.");
- DBG_ASSERTWARNING(nPage > 1, "Page object must not be a handout.");
+ SAL_WARN_IF(nPage <= 1, "sd", "Page object must not be a handout.");
if (nStartPos > 0 && nPage > 1)
static_cast<SdrPageObj*>(pObj)->SetReferencedPage(GetPage(nPage - 1));