tuned signature -- no need for ooddities;
authorwenzelm
Wed, 28 Aug 2013 19:12:15 +0200
changeset 53250 31f956f42e8d
parent 53249 c95e9aee959c
child 53251 7facc08da806
tuned signature -- no need for ooddities;
src/Tools/jEdit/src/popup.scala
--- a/src/Tools/jEdit/src/popup.scala	Wed Aug 28 19:08:11 2013 +0200
+++ b/src/Tools/jEdit/src/popup.scala	Wed Aug 28 19:12:15 2013 +0200
@@ -17,9 +17,9 @@
   layered: JLayeredPane,
   component: JComponent,
   location: Point,
-  size: Dimension) extends javax.swing.Popup()
+  size: Dimension)
 {
-  override def show
+  def show
   {
     component.setLocation(location)
     component.setSize(size)
@@ -30,7 +30,7 @@
     layered.repaint(component.getBounds())
   }
 
-  override def hide
+  def hide
   {
     val bounds = component.getBounds()
     layered.remove(component)