Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 12740 Details for
Bug 67046
Exception when dragging a method to another class using the package explorer
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch to be applied to AbstractReconciler.java
patch.txt (text/plain), 1.16 KB, created by
Dani Megert
on 2004-06-23 14:27:03 EDT
(
hide
)
Description:
Patch to be applied to AbstractReconciler.java
Filename:
MIME Type:
Creator:
Dani Megert
Created:
2004-06-23 14:27:03 EDT
Size:
1.16 KB
patch
obsolete
>Index: AbstractReconciler.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.jface.text/src/org/eclipse/jface/text/reconciler/AbstractReconciler.java,v >retrieving revision 1.18 >diff -u -r1.18 AbstractReconciler.java >--- AbstractReconciler.java 22 Jun 2004 16:26:53 -0000 1.18 >+++ AbstractReconciler.java 23 Jun 2004 18:21:52 -0000 >@@ -434,6 +434,12 @@ > fListener= new Listener(); > fViewer.addTextInputListener(fListener); > >+ IDocument viewerDocument= fViewer.getDocument(); >+ if (viewerDocument != null) { >+ fListener.inputDocumentAboutToBeChanged(fDocument, viewerDocument); >+ fListener.inputDocumentChanged(fDocument, viewerDocument); >+ } >+ > fDirtyRegionQueue= new DirtyRegionQueue(); > } > >@@ -444,7 +450,10 @@ > if (fListener != null) { > > fViewer.removeTextInputListener(fListener); >- if (fDocument != null) fDocument.removeDocumentListener(fListener); >+ if (fDocument != null) { >+ fListener.inputDocumentAboutToBeChanged(fDocument, null); >+ fListener.inputDocumentChanged(fDocument, null); >+ } > fListener= null; > > synchronized (this) {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 67046
:
12383
|
12385
|
12386
| 12740