Author: alg
Date: Fri Jul 26 08:28:40 2013
New Revision: 1507210
URL: http://svn.apache.org/r1507210
Log:
Correction of scope for if
Modified:
openoffice/trunk/main/sw/source/ui/sidebar/PagePropertyPanel.cxx
Modified: openoffice/trunk/main/sw/source/ui/sidebar/PagePropertyPanel.cxx
URL:
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/ui/sidebar/PagePropertyPanel.cxx?rev=1507210&r1=1507209&r2=1507210&view=diff
==============================================================================
--- openoffice/trunk/main/sw/source/ui/sidebar/PagePropertyPanel.cxx (original)
+++ openoffice/trunk/main/sw/source/ui/sidebar/PagePropertyPanel.cxx Fri Jul 26
08:28:40 2013
@@ -832,7 +832,7 @@ void PagePropertyPanel::ChangeColumnImag
void PagePropertyPanel::StartUndo()
{
- if ( mxUndoManager.is() );
+ if ( mxUndoManager.is() )
{
mxUndoManager->enterUndoContext( A2S("") );
}
@@ -841,7 +841,7 @@ void PagePropertyPanel::StartUndo()
void PagePropertyPanel::EndUndo()
{
- if ( mxUndoManager.is() );
+ if ( mxUndoManager.is() )
{
mxUndoManager->leaveUndoContext();
}