summaryrefslogtreecommitdiff
path: root/java/eclipse/files/patch-RuntimeErrorDialog.java
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2004-07-25 08:01:09 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2004-07-25 08:01:09 +0000
commit4085ba54b41d14620736520c2c40425a544cb5a4 (patch)
tree2ccfe4e95d3be2092b542c6da73c58fb1826e781 /java/eclipse/files/patch-RuntimeErrorDialog.java
parentFix build on 4.x. (diff)
Update to 3.0.
Submitted by: Panagiotis Astithas <past@netmode.ntua.gr> Jeremy Faulkner <gldisater@gldis.ca> Torben Jager <Torben.Jaeger@t-online.de> Georg-W. Koltermann <gwk@rahn-koltermann.de> Reviewed by: java
Diffstat (limited to 'java/eclipse/files/patch-RuntimeErrorDialog.java')
-rw-r--r--java/eclipse/files/patch-RuntimeErrorDialog.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/java/eclipse/files/patch-RuntimeErrorDialog.java b/java/eclipse/files/patch-RuntimeErrorDialog.java
deleted file mode 100644
index da93620a419f..000000000000
--- a/java/eclipse/files/patch-RuntimeErrorDialog.java
+++ /dev/null
@@ -1,21 +0,0 @@
---- plugins/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/util/RuntimeErrorDialog.java.orig Thu Mar 6 12:23:58 2003
-+++ plugins/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/util/RuntimeErrorDialog.java Thu Mar 6 12:25:26 2003
-@@ -68,8 +68,10 @@
- data.widthHint = getMinimumMessageWidth();
- // set the default height on linux.
- // Note: on Windows, the default height is fine.
-- if (System.getProperty("os.name").startsWith("Linux"))
-+ if (System.getProperty("os.name").startsWith("Linux") ||
-+ System.getProperty("os.name").startsWith("FreeBSD"))
- data.heightHint = convertVerticalDLUsToPixels(100);
-+ else
- text.setLayoutData(data);
- text.setFont(parent.getFont());
- text.setBackground(composite.getDisplay().getSystemColor(SWT.COLOR_WHITE));
-@@ -88,4 +90,4 @@
- dialog.open();
- return;
- }
--}
-\ No newline at end of file
-+}