summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLillian Angel <langel@redhat.com>2006-07-19 16:04:17 +0000
committerLillian Angel <langel@redhat.com>2006-07-19 16:04:17 +0000
commit43a4128ea516c8a978ddc2050df5a8cda7dc1a39 (patch)
treeecf646482eddc05a720c1d15ce186716274f7ea0 /examples
parentfb98cc388cb8aff7a6d0abdd05e996a7a1cd737c (diff)
downloadclasspath-43a4128ea516c8a978ddc2050df5a8cda7dc1a39.tar.gz
2006-07-19 Lillian Angel <langel@redhat.com>
* examples/gnu/classpath/examples/awt/Demo.java (DragDropWindow): Fixed typo in Label text. * gnu/java/awt/dnd/peer/gtk/GtkDragSourceContextPeer.java (GtkDragSourceContextPeer): Removed unneeded initialization for field. (startDrag): Initialized context field. (transferablesFlavorsChanged): Removed FIXME. Nothing is done in this function. (dragEnter): New function. (dragExit): Likewise. (dragDropEnd): Likewise. (dragMouseMoved): Likewise. (dragOver): Likewise. (dragActionChanged): Likewise.
Diffstat (limited to 'examples')
-rw-r--r--examples/gnu/classpath/examples/awt/Demo.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/gnu/classpath/examples/awt/Demo.java b/examples/gnu/classpath/examples/awt/Demo.java
index 1ca09ff23..bd5e755cb 100644
--- a/examples/gnu/classpath/examples/awt/Demo.java
+++ b/examples/gnu/classpath/examples/awt/Demo.java
@@ -863,8 +863,7 @@ class Demo
extends SubFrame
implements ActionListener, DropTargetListener
{
- DragLabel source = new DragLabel(
- "Drag and drop me to the following JButton",
+ DragLabel source = new DragLabel("Drag and drop me to the following Button",
Label.CENTER);
Button target = new Button();