Changeset 10634
- Timestamp:
- 02/08/10 20:01:39 (7 months ago)
- Location:
- trunk/Padre/lib/Padre
- Files:
-
- 2 modified
-
Action/Refactor.pm (modified) (1 diff)
-
Task/PPI/LexicalReplaceVariable.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre/lib/Padre/Action/Refactor.pm
r10436 r10634 48 48 need_editor => 1, 49 49 label => Wx::gettext('Lexically Rename Variable'), 50 comment => Wx::gettext('Prompt for a replacement variable name and replace all occurr anceof this variable'),50 comment => Wx::gettext('Prompt for a replacement variable name and replace all occurrences of this variable'), 51 51 menu_event => sub { 52 52 my $doc = $_[0]->current->document or return; -
trunk/Padre/lib/Padre/Task/PPI/LexicalReplaceVariable.pm
r10436 r10634 21 21 my $replacer = Padre::Task::PPI::LexicalReplaceVariable->new( 22 22 document => $document_obj, 23 location => [$line, $column], # the position of *any* occurr ance of the variable23 location => [$line, $column], # the position of *any* occurrence of the variable 24 24 replacement => '$foo', 25 25 );
