You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by or...@apache.org on 2013/03/18 12:52:04 UTC

svn commit: r1457720 - /openoffice/branches/sidebar/main/sw/source/ui/sidebar/PagePropertyPanel.cxx

Author: orw
Date: Mon Mar 18 11:52:04 2013
New Revision: 1457720

URL: http://svn.apache.org/r1457720
Log:
#121793# - correction: do not delete controls while is use

Modified:
    openoffice/branches/sidebar/main/sw/source/ui/sidebar/PagePropertyPanel.cxx

Modified: openoffice/branches/sidebar/main/sw/source/ui/sidebar/PagePropertyPanel.cxx
URL: http://svn.apache.org/viewvc/openoffice/branches/sidebar/main/sw/source/ui/sidebar/PagePropertyPanel.cxx?rev=1457720&r1=1457719&r2=1457720&view=diff
==============================================================================
--- openoffice/branches/sidebar/main/sw/source/ui/sidebar/PagePropertyPanel.cxx (original)
+++ openoffice/branches/sidebar/main/sw/source/ui/sidebar/PagePropertyPanel.cxx Mon Mar 18 11:52:04 2013
@@ -358,7 +358,6 @@ void PagePropertyPanel::ExecuteOrientati
 void PagePropertyPanel::ClosePageOrientationPopup()
 {
     mpOrientationPopup->Hide();
-    mpOrientationPopup.reset( 0 );
 }
 
 
@@ -421,7 +420,6 @@ IMPL_LINK( PagePropertyPanel, ClickMargi
 void PagePropertyPanel::ClosePageMarginPopup()
 {
     mpMarginPopup->Hide();
-    mpMarginPopup.reset( 0 );
 }
 
 
@@ -467,7 +465,6 @@ IMPL_LINK( PagePropertyPanel, ClickSizeH
 void PagePropertyPanel::ClosePageSizePopup()
 {
     mpSizePopup->Hide();
-    mpSizePopup.reset( 0 );
 }
 
 
@@ -506,7 +503,6 @@ IMPL_LINK( PagePropertyPanel, ClickColum
 void PagePropertyPanel::ClosePageColumnPopup()
 {
     mpColumnPopup->Hide();
-    mpColumnPopup.reset( 0 );
 }