Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Williams2019-02-20 16:50:27 +0000
committerEric Williams2019-02-22 15:07:33 +0000
commit2cefba233513e18109c18cd7d2865e28cb489c34 (patch)
tree419f7814da266ba9dc961835af10a38b19405734
parent8540e746179ae6f69e9f415f37179feca80a3bb0 (diff)
downloadeclipse.platform.swt-2cefba233513e18109c18cd7d2865e28cb489c34.tar.gz
eclipse.platform.swt-2cefba233513e18109c18cd7d2865e28cb489c34.tar.xz
eclipse.platform.swt-2cefba233513e18109c18cd7d2865e28cb489c34.zip
Bug 411997: [Text] Ctrl-Z does not work on Linux
Update Text Javadocs to explain that some actions like Undo are not available on all platforms. Change-Id: I8ba43b619e335eb85227df3fba050d4ffc07b71c Signed-off-by: Eric Williams <ericwill@redhat.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java3
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java3
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java3
3 files changed, 9 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
index 9850949ea3..450ddaf4da 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
@@ -47,6 +47,9 @@ import org.eclipse.swt.internal.cocoa.*;
* event is sent causing the application to search for an empty string.
* </p>
* <p>
+ * Note: Some text actions such as Undo are not natively supported on all platforms.
+ * </p>
+ * <p>
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
*
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
index 892f65dd7a..9faa10358c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
@@ -51,6 +51,9 @@ import org.eclipse.swt.internal.gtk.*;
* event is sent causing the application to search for an empty string.
* </p>
* <p>
+ * Note: Some text actions such as Undo are not natively supported on all platforms.
+ * </p>
+ * <p>
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
*
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
index 605cb04b3d..186bb398b1 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
@@ -49,6 +49,9 @@ import org.eclipse.swt.internal.win32.*;
* event is sent causing the application to search for an empty string.
* </p>
* <p>
+ * Note: Some text actions such as Undo are not natively supported on all platforms.
+ * </p>
+ * <p>
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
*

Back to the top