Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsxenos2004-05-08 02:55:38 +0000
committersxenos2004-05-08 02:55:38 +0000
commit76893f31d6b1a01638436c4f0616a8c6569f523b (patch)
tree24b185c8e8c317b35a63f28654a336012bc0bf3e /bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java
parente08703c6e2d8161cbe55f18b93a2484221f25085 (diff)
downloadeclipse.platform.ui-76893f31d6b1a01638436c4f0616a8c6569f523b.tar.gz
eclipse.platform.ui-76893f31d6b1a01638436c4f0616a8c6569f523b.tar.xz
eclipse.platform.ui-76893f31d6b1a01638436c4f0616a8c6569f523b.zip
Fix for bug 61433
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java
index f0dc5e54a54..3f938e1d413 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java
@@ -53,12 +53,12 @@ public interface IEditorPart extends IWorkbenchPart, ISaveablePart {
/**
* The property id for <code>isDirty</code>.
*/
- public static final int PROP_DIRTY = ISaveablePart.PROP_DIRTY;
+ public static final int PROP_DIRTY = WorkbenchPartConstants.PROP_DIRTY;
/**
* The property id for <code>getEditorInput</code>.
*/
- public static final int PROP_INPUT = 0x102;
+ public static final int PROP_INPUT = WorkbenchPartConstants.PROP_INPUT;
/**
* Returns the input for this editor. If this value changes the part must

Back to the top