Kaydet (Commit) d7c2bf91 authored tarafından Armin Le Grand's avatar Armin Le Grand

Correction of scope for if

üst 78f54616
...@@ -832,7 +832,7 @@ void PagePropertyPanel::ChangeColumnImage( const sal_uInt16 nColumnType ) ...@@ -832,7 +832,7 @@ void PagePropertyPanel::ChangeColumnImage( const sal_uInt16 nColumnType )
void PagePropertyPanel::StartUndo() void PagePropertyPanel::StartUndo()
{ {
if ( mxUndoManager.is() ); if ( mxUndoManager.is() )
{ {
mxUndoManager->enterUndoContext( A2S("") ); mxUndoManager->enterUndoContext( A2S("") );
} }
...@@ -841,7 +841,7 @@ void PagePropertyPanel::StartUndo() ...@@ -841,7 +841,7 @@ void PagePropertyPanel::StartUndo()
void PagePropertyPanel::EndUndo() void PagePropertyPanel::EndUndo()
{ {
if ( mxUndoManager.is() ); if ( mxUndoManager.is() )
{ {
mxUndoManager->leaveUndoContext(); mxUndoManager->leaveUndoContext();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment