diff options
author | Eike Rathke <erack@redhat.com> | 2018-07-05 00:31:34 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-07-05 00:36:32 +0200 |
commit | 4bfa5d08c6ef94706e340f78ea1052e94a8c5915 (patch) | |
tree | 10fc0daec975eedd3ce80a56e3433adab962a4d0 | |
parent | 7903fa04d2d2233fe193eef7dfd3c203430edcc6 (diff) |
Turn SAL_WARN into assert
... as it indicates a programming error.
Change-Id: I526846fe695fc7ed28336ea20cdba0c0db2e922a
-rw-r--r-- | sc/source/core/data/table1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/table1.cxx b/sc/source/core/data/table1.cxx index 9af3ad511c45..ff58624e5743 100644 --- a/sc/source/core/data/table1.cxx +++ b/sc/source/core/data/table1.cxx @@ -1419,7 +1419,7 @@ void ScTable::GetNextPos( SCCOL& rCol, SCROW& rRow, SCCOL nMovX, SCROW nMovY, } else { - SAL_WARN("sc.core","ScTable::GetNextPos - bMarked but not marked"); + assert(!"ScTable::GetNextPos - bMarked but not marked"); nStartCol = 0; nStartRow = 0; nEndCol = MAXCOL; |