summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/undo/undocell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/undo/undocell.cxx')
-rw-r--r--sc/source/ui/undo/undocell.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/undo/undocell.cxx b/sc/source/ui/undo/undocell.cxx
index 972b8d76032f..159eb1df675f 100644
--- a/sc/source/ui/undo/undocell.cxx
+++ b/sc/source/ui/undo/undocell.cxx
@@ -890,7 +890,7 @@ OUString ScUndoDetective::GetComment() const
{
const char* pId = STR_UNDO_DETDELALL;
if ( !bIsDelete )
- switch ( (ScDetOpType) nAction )
+ switch ( static_cast<ScDetOpType>(nAction) )
{
case SCDETOP_ADDSUCC: pId = STR_UNDO_DETADDSUCC; break;
case SCDETOP_DELSUCC: pId = STR_UNDO_DETDELSUCC; break;
@@ -923,7 +923,7 @@ void ScUndoDetective::Undo()
{
ScDetOpDataVector& rVec = pList->GetDataVector();
ScDetOpDataVector::iterator it = rVec.begin() + rVec.size() - 1;
- if ( (*it)->GetOperation() == (ScDetOpType) nAction && (*it)->GetPos() == aPos )
+ if ( (*it)->GetOperation() == static_cast<ScDetOpType>(nAction) && (*it)->GetPos() == aPos )
rVec.erase( it);
else
{
@@ -950,7 +950,7 @@ void ScUndoDetective::Redo()
if (bIsDelete)
rDoc.ClearDetectiveOperations();
else
- rDoc.AddDetectiveOperation( ScDetOpData( aPos, (ScDetOpType) nAction ) );
+ rDoc.AddDetectiveOperation( ScDetOpData( aPos, static_cast<ScDetOpType>(nAction) ) );
ScTabViewShell* pViewShell = ScTabViewShell::GetActiveViewShell();
if (pViewShell)