Changeset 878


Ignore:
Timestamp:
11/10/08 21:30:50 (3 years ago)
Author:
adamk
Message:

Remove the catfiles from tango calls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Padre/Wx/ToolBar.pm

    r875 r878  
    2222    $self->AddTool( 
    2323        Wx::wxID_NEW, '', 
    24         Padre::Wx::tango( catfile( 'actions', 'document-new.png' ) ), 
     24        Padre::Wx::tango( 'actions', 'document-new.png' ), 
    2525        gettext('New File'), 
    2626    ); 
     
    3232    $self->AddTool( 
    3333        Wx::wxID_OPEN, '', 
    34         Padre::Wx::tango( catfile( 'actions', 'document-open.png' ) ), 
     34        Padre::Wx::tango( 'actions', 'document-open.png' ), 
    3535        gettext('Open File'), 
    3636    ); 
    3737    $self->AddTool( 
    3838        Wx::wxID_SAVE, '', 
    39         Padre::Wx::tango( catfile( 'actions', 'document-save.png' ) ), 
     39        Padre::Wx::tango( 'actions', 'document-save.png' ), 
    4040        gettext('Save File'), 
    4141    ); 
    4242    $self->AddTool( 
    4343        Wx::wxID_CLOSE, '', 
    44         Padre::Wx::tango( catfile( 'emblems', 'emblem-unreadable.png' ) ), 
     44        Padre::Wx::tango( 'emblems', 'emblem-unreadable.png' ), 
    4545        gettext('Close File'), 
    4646    ); 
     
    6363    $self->AddTool( 
    6464        Wx::wxID_UNDO, '', 
    65         Padre::Wx::tango( catfile( 'actions', 'edit-undo.png' ) ), 
     65        Padre::Wx::tango( 'actions', 'edit-undo.png' ), 
    6666        gettext('Undo'), 
    6767    ); 
    6868    $self->AddTool( 
    6969        Wx::wxID_REDO, '', 
    70         Padre::Wx::tango( catfile( 'actions', 'edit-redo.png' ) ), 
     70        Padre::Wx::tango( 'actions', 'edit-redo.png' ), 
    7171        gettext('Redo'), 
    7272    ); 
     
    8080    $self->AddTool( 
    8181        Wx::wxID_CUT, '', 
    82         Padre::Wx::tango( catfile( 'actions', 'edit-cut.png' ) ), 
     82        Padre::Wx::tango( 'actions', 'edit-cut.png' ), 
    8383        gettext('Cut'), 
    8484    ); 
     
    9090    $self->AddTool( 
    9191        Wx::wxID_COPY,  '', 
    92         Padre::Wx::tango( catfile( 'actions', 'edit-copy.png' ) ), 
     92        Padre::Wx::tango( 'actions', 'edit-copy.png' ), 
    9393        gettext('Copy'), 
    9494    ); 
     
    100100    $self->AddTool( 
    101101        Wx::wxID_PASTE, '', 
    102         Padre::Wx::tango( catfile( 'actions', 'edit-paste.png' ) ), 
     102        Padre::Wx::tango( 'actions', 'edit-paste.png' ), 
    103103        gettext('Paste'), 
    104104    ); 
     
    110110    $self->AddTool( 
    111111        Wx::wxID_SELECTALL, '', 
    112         Padre::Wx::tango( catfile( 'actions', 'edit-select-all.png' ) ), 
     112        Padre::Wx::tango( 'actions', 'edit-select-all.png' ), 
    113113        gettext('Select all'), 
    114114    ); 
Note: See TracChangeset for help on using the changeset viewer.