[Jsxe-cvs] SF.net SVN: jsxe: [1245] branches/sourceview2
Status: Inactive
Brought to you by:
ian_lewis
From: <ian...@us...> - 2006-09-07 00:03:52
|
Revision: 1245 http://svn.sourceforge.net/jsxe/?rev=1245&view=rev Author: ian_lewis Date: 2006-09-06 17:03:48 -0700 (Wed, 06 Sep 2006) Log Message: ----------- Updated to not use the show() method since it's deprecated Modified Paths: -------------- branches/sourceview2/Changelog branches/sourceview2/src/sourceview/SourceViewOptionPane.java Modified: branches/sourceview2/Changelog =================================================================== --- branches/sourceview2/Changelog 2006-09-07 00:01:54 UTC (rev 1244) +++ branches/sourceview2/Changelog 2006-09-07 00:03:48 UTC (rev 1245) @@ -1,3 +1,7 @@ +09/06/2006 Ian Lewis <Ian...@me...> + + * Updated to not use show() method since it's deprecated. + 08/31/2006 Ian Lewis <Ian...@me...> * Updated the sourceview actions to use the new ContextSpecificActions in Modified: branches/sourceview2/src/sourceview/SourceViewOptionPane.java =================================================================== --- branches/sourceview2/src/sourceview/SourceViewOptionPane.java 2006-09-07 00:01:54 UTC (rev 1244) +++ branches/sourceview2/src/sourceview/SourceViewOptionPane.java 2006-09-07 00:03:48 UTC (rev 1245) @@ -329,7 +329,7 @@ setLocationRelativeTo(getParentDialog(comp)); setResizable(false); - show(); + setVisible(true); } //}}} //{{{ actionPerformed() method @@ -604,7 +604,7 @@ true); } dialog.pack(); - dialog.show(); + dialog.setVisible(true); } } //}}} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |