Changeset 878
- Timestamp:
- 11/10/08 21:30:50 (3 years ago)
- File:
-
- 1 edited
-
trunk/lib/Padre/Wx/ToolBar.pm (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Padre/Wx/ToolBar.pm
r875 r878 22 22 $self->AddTool( 23 23 Wx::wxID_NEW, '', 24 Padre::Wx::tango( catfile( 'actions', 'document-new.png' )),24 Padre::Wx::tango( 'actions', 'document-new.png' ), 25 25 gettext('New File'), 26 26 ); … … 32 32 $self->AddTool( 33 33 Wx::wxID_OPEN, '', 34 Padre::Wx::tango( catfile( 'actions', 'document-open.png' )),34 Padre::Wx::tango( 'actions', 'document-open.png' ), 35 35 gettext('Open File'), 36 36 ); 37 37 $self->AddTool( 38 38 Wx::wxID_SAVE, '', 39 Padre::Wx::tango( catfile( 'actions', 'document-save.png' )),39 Padre::Wx::tango( 'actions', 'document-save.png' ), 40 40 gettext('Save File'), 41 41 ); 42 42 $self->AddTool( 43 43 Wx::wxID_CLOSE, '', 44 Padre::Wx::tango( catfile( 'emblems', 'emblem-unreadable.png' )),44 Padre::Wx::tango( 'emblems', 'emblem-unreadable.png' ), 45 45 gettext('Close File'), 46 46 ); … … 63 63 $self->AddTool( 64 64 Wx::wxID_UNDO, '', 65 Padre::Wx::tango( catfile( 'actions', 'edit-undo.png' )),65 Padre::Wx::tango( 'actions', 'edit-undo.png' ), 66 66 gettext('Undo'), 67 67 ); 68 68 $self->AddTool( 69 69 Wx::wxID_REDO, '', 70 Padre::Wx::tango( catfile( 'actions', 'edit-redo.png' )),70 Padre::Wx::tango( 'actions', 'edit-redo.png' ), 71 71 gettext('Redo'), 72 72 ); … … 80 80 $self->AddTool( 81 81 Wx::wxID_CUT, '', 82 Padre::Wx::tango( catfile( 'actions', 'edit-cut.png' )),82 Padre::Wx::tango( 'actions', 'edit-cut.png' ), 83 83 gettext('Cut'), 84 84 ); … … 90 90 $self->AddTool( 91 91 Wx::wxID_COPY, '', 92 Padre::Wx::tango( catfile( 'actions', 'edit-copy.png' )),92 Padre::Wx::tango( 'actions', 'edit-copy.png' ), 93 93 gettext('Copy'), 94 94 ); … … 100 100 $self->AddTool( 101 101 Wx::wxID_PASTE, '', 102 Padre::Wx::tango( catfile( 'actions', 'edit-paste.png' )),102 Padre::Wx::tango( 'actions', 'edit-paste.png' ), 103 103 gettext('Paste'), 104 104 ); … … 110 110 $self->AddTool( 111 111 Wx::wxID_SELECTALL, '', 112 Padre::Wx::tango( catfile( 'actions', 'edit-select-all.png' )),112 Padre::Wx::tango( 'actions', 'edit-select-all.png' ), 113 113 gettext('Select all'), 114 114 );
Note: See TracChangeset
for help on using the changeset viewer.
