From: <ds...@us...> - 2008-06-30 13:24:26
|
Revision: 5700 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5700&view=rev Author: dsdale Date: 2008-06-30 06:24:13 -0700 (Mon, 30 Jun 2008) Log Message: ----------- removed Qt4's NavigationToolbar2.destroy method Modified Paths: -------------- branches/v0_91_maint/CHANGELOG branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py Modified: branches/v0_91_maint/CHANGELOG =================================================================== --- branches/v0_91_maint/CHANGELOG 2008-06-30 13:21:19 UTC (rev 5699) +++ branches/v0_91_maint/CHANGELOG 2008-06-30 13:24:13 UTC (rev 5700) @@ -1,3 +1,7 @@ +2008-06-30 Removed Qt4 NavigationToolbar2.destroy -- it appears to + have been unnecessary and caused a bug reported by P. + Raybaut - DSD + 2008-06-26 Fix mathtext bug for expressions like $x_{\leftarrow}$ - MGD 2008-06-26 Fix direction of horizontal/vertical hatches - MGD Modified: branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py =================================================================== --- branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py 2008-06-30 13:21:19 UTC (rev 5699) +++ branches/v0_91_maint/lib/matplotlib/backends/backend_qt4.py 2008-06-30 13:24:13 UTC (rev 5700) @@ -340,13 +340,6 @@ # reference holder for subplots_adjust window self.adj_window = None - def destroy( self ): - for text, tooltip_text, image_file, callback in self.toolitems: - if text is not None: - QtCore.QObject.disconnect( self.buttons[ text ], - QtCore.SIGNAL( 'clicked()' ), - getattr( self, callback ) ) - def dynamic_update( self ): self.canvas.draw() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |