aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Su <[email protected]>2010-12-07 14:50:36 -0500
committerAndrew Su <[email protected]>2010-12-07 14:50:36 -0500
commitd9a224dcc7dcbe3ee1c9cd9215d14052fc82a8e1 (patch)
tree04e1bea839391880df62a376c52e54ffdd75bb5c
parent6f34cafb3e820c3bf1354f4a6405f435aa977429 (diff)
Added copyright header to MiddleClickListener.java.icedtea-web-1.0-branchpoint
Corrected a typo in javadoc.
-rw-r--r--ChangeLog5
-rw-r--r--netx/net/sourceforge/jnlp/controlpanel/MiddleClickListener.java19
2 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c9b5d93..2ff33b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-12-07 Andrew Su <[email protected]>
+
+ * MiddleClickListener.java: Added copyright header. Corrected typo in
+ javadoc.
+
2010-12-07 Omair Majid <[email protected]>
* Makefile.am
diff --git a/netx/net/sourceforge/jnlp/controlpanel/MiddleClickListener.java b/netx/net/sourceforge/jnlp/controlpanel/MiddleClickListener.java
index 633bfdf..74f039b 100644
--- a/netx/net/sourceforge/jnlp/controlpanel/MiddleClickListener.java
+++ b/netx/net/sourceforge/jnlp/controlpanel/MiddleClickListener.java
@@ -1,3 +1,20 @@
+/* MiddleClickListener.java -- Update configuration when pasting with middle click.
+Copyright (C) 2010 Red Hat
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
package net.sourceforge.jnlp.controlpanel;
import java.awt.event.MouseAdapter;
@@ -9,7 +26,7 @@ import javax.swing.JTextField;
import net.sourceforge.jnlp.runtime.DeploymentConfiguration;
/**
- * When middle click pastes to the checkboxes it doesn't register it... This is
+ * When middle click pastes to the textboxes it doesn't register it... This is
* to fix that problem. Not needed in Windows.
*
* @author Andrew Su <[email protected], [email protected]>