Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Weinand2004-06-07 09:48:26 +0000
committerAndre Weinand2004-06-07 09:48:26 +0000
commitc67320a2589753e30a076b54d703a79291bf46f3 (patch)
tree49d03ef037426efbd642b7bff59a2a965635b629
parent782d2bd0e7a442e1bd0b7a6116e10adc11a9bf28 (diff)
downloadeclipse.platform.team-c67320a2589753e30a076b54d703a79291bf46f3.tar.gz
eclipse.platform.team-c67320a2589753e30a076b54d703a79291bf46f3.tar.xz
eclipse.platform.team-c67320a2589753e30a076b54d703a79291bf46f3.zip
fixed typosv20040607_1200
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java6
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java6
2 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java
index 9c9cba172..5f5592fe0 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java
@@ -1071,7 +1071,7 @@ public class TextMergeViewer extends ContentMergeViewer {
public void mouseMove(MouseEvent e) {
Cursor cursor= null;
Diff diff= handlemouseInBirdsEyeView(fBirdsEyeCanvas, e.y);
- if (diff != null && diff.fDirection != Differencer.NO_CHANGE)
+ if (diff != null && diff.fDirection != RangeDifference.NOCHANGE)
cursor= fBirdsEyeCursor;
if (fLastCursor != cursor) {
fBirdsEyeCanvas.setCursor(cursor);
@@ -1119,7 +1119,7 @@ public class TextMergeViewer extends ContentMergeViewer {
}
private void setCurrentDiff2(Diff diff, boolean reveal) {
- if (diff != null && diff.fDirection != Differencer.NO_CHANGE) {
+ if (diff != null && diff.fDirection != RangeDifference.NOCHANGE) {
//fCurrentDiff= null;
setCurrentDiff(diff, reveal);
}
@@ -1769,7 +1769,7 @@ public class TextMergeViewer extends ContentMergeViewer {
* on the other side. The method returns the position where the subdocument is placed into the base document.
* This default implementation determines the position by using the text range differencer.
* However this position is not always optimal for specific types of text.
- * So subclasses (which are awrae of the type of text they are dealing with)
+ * So subclasses (which are aware of the type of text they are dealing with)
* may override this method to find a better position where to insert a newly added
* piece of text.
* @param type the side for which the insertion position should be determined: 'A' for ancestor, 'L' for left hand side, 'R' for right hand side.
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java
index 9c9cba172..5f5592fe0 100644
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java
+++ b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java
@@ -1071,7 +1071,7 @@ public class TextMergeViewer extends ContentMergeViewer {
public void mouseMove(MouseEvent e) {
Cursor cursor= null;
Diff diff= handlemouseInBirdsEyeView(fBirdsEyeCanvas, e.y);
- if (diff != null && diff.fDirection != Differencer.NO_CHANGE)
+ if (diff != null && diff.fDirection != RangeDifference.NOCHANGE)
cursor= fBirdsEyeCursor;
if (fLastCursor != cursor) {
fBirdsEyeCanvas.setCursor(cursor);
@@ -1119,7 +1119,7 @@ public class TextMergeViewer extends ContentMergeViewer {
}
private void setCurrentDiff2(Diff diff, boolean reveal) {
- if (diff != null && diff.fDirection != Differencer.NO_CHANGE) {
+ if (diff != null && diff.fDirection != RangeDifference.NOCHANGE) {
//fCurrentDiff= null;
setCurrentDiff(diff, reveal);
}
@@ -1769,7 +1769,7 @@ public class TextMergeViewer extends ContentMergeViewer {
* on the other side. The method returns the position where the subdocument is placed into the base document.
* This default implementation determines the position by using the text range differencer.
* However this position is not always optimal for specific types of text.
- * So subclasses (which are awrae of the type of text they are dealing with)
+ * So subclasses (which are aware of the type of text they are dealing with)
* may override this method to find a better position where to insert a newly added
* piece of text.
* @param type the side for which the insertion position should be determined: 'A' for ancestor, 'L' for left hand side, 'R' for right hand side.

Back to the top