summaryrefslogtreecommitdiff
path: root/svx/source/fmcomp/gridctrl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-19 11:55:44 +0200
committerNoel Grandin <noel@peralex.com>2015-10-19 13:08:29 +0200
commit39e63bfac528d8c5c002ee8fef4a1e5d7181b826 (patch)
tree8e8dc14e1719c361ccf0cdaccde66b3b7862b1e7 /svx/source/fmcomp/gridctrl.cxx
parent367105e0248c7b80b60b2554d04f5f248b4259b3 (diff)
convert remaing DBG_WARNING to SAL_INFO
and drop the macro Change-Id: I452ca373d0c277166e94928c1bce78bf37e39d7c
Diffstat (limited to 'svx/source/fmcomp/gridctrl.cxx')
-rw-r--r--svx/source/fmcomp/gridctrl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx
index fdc80be80c59..d7c43f20297e 100644
--- a/svx/source/fmcomp/gridctrl.cxx
+++ b/svx/source/fmcomp/gridctrl.cxx
@@ -2258,14 +2258,14 @@ sal_Int32 DbGridControl::AlignSeekCursor()
if ( m_pDataCursor->isBeforeFirst() )
{
// this is somewhat strange, but can nevertheless happen
- DBG_WARNING( "DbGridControl::AlignSeekCursor: nobody should tamper with my cursor this way (before first)!" );
+ SAL_INFO( "svx", "DbGridControl::AlignSeekCursor: nobody should tamper with my cursor this way (before first)!" );
m_pSeekCursor->first();
m_pSeekCursor->previous();
m_nSeekPos = -1;
}
else if ( m_pDataCursor->isAfterLast() )
{
- DBG_WARNING( "DbGridControl::AlignSeekCursor: nobody should tamper with my cursor this way (after last)!" );
+ SAL_INFO( "svx", "DbGridControl::AlignSeekCursor: nobody should tamper with my cursor this way (after last)!" );
m_pSeekCursor->last();
m_pSeekCursor->next();
m_nSeekPos = -1;