summaryrefslogtreecommitdiff
path: root/sc/source/core/data/documen3.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-16 04:58:29 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-16 04:58:59 +0100
commitfd17ba6a421acf63b3b959138bb572498d56d469 (patch)
tree26d134d7f30bc7187c5a4df49162ac4e79793b42 /sc/source/core/data/documen3.cxx
parentf63423d58551b387dd9617c6c84719a95ee6d522 (diff)
sc: translate some debug messages
Change-Id: I0c741d2cda4568aef81a18788a764f3ef679660c
Diffstat (limited to 'sc/source/core/data/documen3.cxx')
-rw-r--r--sc/source/core/data/documen3.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx
index 55e01eb1813c..f2fc8199d746 100644
--- a/sc/source/core/data/documen3.cxx
+++ b/sc/source/core/data/documen3.cxx
@@ -851,7 +851,7 @@ bool ScDocument::TestCopyScenario( SCTAB nSrcTab, SCTAB nDestTab ) const
&& nDestTab < static_cast<SCTAB>(maTabs.size())&& ValidTab(nDestTab))
return maTabs[nSrcTab]->TestCopyScenarioTo( maTabs[nDestTab] );
- OSL_FAIL("falsche Tabelle bei TestCopyScenario");
+ OSL_FAIL("wrong table at TestCopyScenario");
return false;
}
@@ -1056,7 +1056,7 @@ void ScDocument::UpdateReference( UpdateRefMode eUpdateRefMode,
void ScDocument::UpdateTranspose( const ScAddress& rDestPos, ScDocument* pClipDoc,
const ScMarkData& rMark, ScDocument* pUndoDoc )
{
- OSL_ENSURE(pClipDoc->bIsClip, "UpdateTranspose: kein Clip");
+ OSL_ENSURE(pClipDoc->bIsClip, "UpdateTranspose: No Clip");
ScRange aSource;
ScClipParam& rClipParam = GetClipParam();
@@ -1615,7 +1615,7 @@ Rectangle ScDocument::GetEmbeddedRect() const // 1/100 mm
OSL_FAIL("table out of range");
if (!pTable)
{
- OSL_FAIL("GetEmbeddedRect ohne Tabelle");
+ OSL_FAIL("GetEmbeddedRect without a table");
}
else
{
@@ -1707,7 +1707,7 @@ ScRange ScDocument::GetRange( SCTAB nTab, const Rectangle& rMMRect, bool bHidden
OSL_FAIL("table out of range");
if (!pTable)
{
- OSL_FAIL("GetRange ohne Tabelle");
+ OSL_FAIL("GetRange without a table");
return ScRange();
}
@@ -1807,7 +1807,7 @@ bool ScDocument::IsTabProtected( SCTAB nTab ) const
if (ValidTab(nTab) && nTab < static_cast<SCTAB>(maTabs.size()) && maTabs[nTab])
return maTabs[nTab]->IsProtected();
- OSL_FAIL("Falsche Tabellennummer");
+ OSL_FAIL("Wrong table number");
return false;
}
@@ -1894,7 +1894,7 @@ Rectangle ScDocument::GetMMRect( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol
{
if (!ValidTab(nTab) || nTab >= static_cast<SCTAB>(maTabs.size()) || !maTabs[nTab])
{
- OSL_FAIL("GetMMRect: falsche Tabelle");
+ OSL_FAIL("GetMMRect: wrong table");
return Rectangle(0,0,0,0);
}