Changeset 4191
- Timestamp:
- 04/28/09 08:13:06 (3 years ago)
- Location:
- trunk/Padre-Plugin-SpellCheck/lib/Padre/Plugin
- Files:
-
- 2 edited
-
SpellCheck.pm (modified) (1 diff)
-
SpellCheck/Engine.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre-Plugin-SpellCheck/lib/Padre/Plugin/SpellCheck.pm
r4183 r4191 67 67 68 68 my $main = Padre::Current->main; 69 my $engine = Padre::Plugin::SpellCheck::Engine->new ;69 my $engine = Padre::Plugin::SpellCheck::Engine->new($self); 70 70 71 71 # fetch text to check -
trunk/Padre-Plugin-SpellCheck/lib/Padre/Plugin/SpellCheck/Engine.pm
r4146 r4191 15 15 use Class::XSAccessor accessors => { 16 16 _ignore => '_ignore', 17 _plugin => '_plugin', # ref to spellecheck plugin 17 18 _speller => '_speller', 18 19 }; … … 23 24 24 25 sub new { 25 my ($class ) = @_;26 my ($class, $plugin) = @_; 26 27 27 28 my $self = bless { 28 29 _ignore => {}, 30 _plugin => $plugin, 29 31 }, $class; 30 32
Note: See TracChangeset
for help on using the changeset viewer.
