summaryrefslogtreecommitdiff
path: root/sc/source/filter/lotus/lotread.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2018-02-02 20:20:29 +0100
committerEike Rathke <erack@redhat.com>2018-02-02 20:24:39 +0100
commit196f8f85fc20491a9d3fa0d4431ed5ec21b318a8 (patch)
tree682495bf055b1fa43591c230eec3451a204aa8a5 /sc/source/filter/lotus/lotread.cxx
parentaed2107e1d003566d6cdb46c2bebe8b025d5f399 (diff)
Make SAL_WARN domain "sc.filter" in sc/source/filter/lotus/
Change-Id: I6fd767bd2694369db836bb1943c7135c10fa6aa6
Diffstat (limited to 'sc/source/filter/lotus/lotread.cxx')
-rw-r--r--sc/source/filter/lotus/lotread.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/lotus/lotread.cxx b/sc/source/filter/lotus/lotread.cxx
index e218b5536aa3..165071c03931 100644
--- a/sc/source/filter/lotus/lotread.cxx
+++ b/sc/source/filter/lotus/lotread.cxx
@@ -190,7 +190,7 @@ ErrCode ImportLotus::Read()
break;
}
- SAL_WARN_IF( nNextRec < pIn->Tell(), "sc",
+ SAL_WARN_IF( nNextRec < pIn->Tell(), "sc.filter",
"*ImportLotus::Read(): Read too much..." );
pIn->Seek( nNextRec );
@@ -211,7 +211,7 @@ ErrCode ImportLotus::Read()
}
for( nCnt = 1 ; nCnt < nTabs ; nCnt++ )
{
- SAL_WARN_IF( !pD->HasTable( nCnt ), "sc",
+ SAL_WARN_IF( !pD->HasTable( nCnt ), "sc.filter",
"-ImportLotus::Read(): Where is my table?!" );
pD->GetName( nCnt, aTabName );
if( aTabName == "temp" )
@@ -268,7 +268,7 @@ ErrCode ImportLotus::Read(SvStream& rIn)
case 0x0001: // EOF
bRead = false;
- SAL_WARN_IF( nTab != 0, "sc",
+ SAL_WARN_IF( nTab != 0, "sc.filter",
"-ImportLotus::Read( SvStream& ): EOF twice!" );
nTab++;
break;
@@ -295,7 +295,7 @@ ErrCode ImportLotus::Read(SvStream& rIn)
break;
}
- SAL_WARN_IF( nNextRec < pIn->Tell(), "sc",
+ SAL_WARN_IF( nNextRec < pIn->Tell(), "sc.filter",
"*ImportLotus::Read(): Read too much..." );
pIn->Seek( nNextRec );
aPrgrsBar.Progress();