|
From: <caw...@us...> - 2006-08-31 01:11:50
|
Revision: 1600
http://svn.sourceforge.net/rubyeclipse/?rev=1600&view=rev
Author: cawilliams
Date: 2006-08-30 18:11:47 -0700 (Wed, 30 Aug 2006)
Log Message:
-----------
install the mark occurences finder when the editor is created (createPartControl)
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java 2006-08-31 01:11:12 UTC (rev 1599)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyAbstractEditor.java 2006-08-31 01:11:47 UTC (rev 1600)
@@ -320,6 +320,13 @@
return super.getAdapter(required);
}
+
+ public void createPartControl(Composite parent) {
+ super.createPartControl(parent);
+
+ if (fMarkOccurrenceAnnotations)
+ installOccurrencesFinder(false);
+ }
protected RubyOutlinePage createRubyOutlinePage() {
RubyOutlinePage outlinePage = new RubyOutlinePage(fOutlinerContextMenuId, this);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|