Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2006-05-04 23:59:40 +0000
committerDani Megert2006-05-04 23:59:40 +0000
commit2d933cf65a2210fdfbdd5a0e3c2c9a3e0b57f4e6 (patch)
tree26bd81f02018d2c23264e61bbce74c4e52802a1a
parentc8e448416ee5f01946ee2dbaec826b3b0f9bc4e1 (diff)
downloadeclipse.platform.text-2d933cf65a2210fdfbdd5a0e3c2c9a3e0b57f4e6.tar.gz
eclipse.platform.text-2d933cf65a2210fdfbdd5a0e3c2c9a3e0b57f4e6.tar.xz
eclipse.platform.text-2d933cf65a2210fdfbdd5a0e3c2c9a3e0b57f4e6.zip
Marked String as non-externalizablev20060505-0010
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/AdditionalInfoController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/AdditionalInfoController.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/AdditionalInfoController.java
index 5c76bf5d1fd..d4b2bb2bb95 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/AdditionalInfoController.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/AdditionalInfoController.java
@@ -504,7 +504,7 @@ class AdditionalInfoController extends AbstractInformationControlManager {
*/
private Point computeTrueShellSize(Shell shell) {
Point size= shell.getSize();
- if ("gtk".equals(SWT.getPlatform())) {
+ if ("gtk".equals(SWT.getPlatform())) { //$NON-NLS-1$
/* XXX bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=136332: on GTK, getSize does not include the trim */
Rectangle trim= shell.computeTrim(0, 0, 0, 0);
size.x += trim.width;

Back to the top