Changeset efd6ded969ff9046f0a8026689ce17f81f2f262c

Show
Ignore:
Timestamp:
01/06/07 23:29:26 (6 years ago)
Author:
Philipp Kern <phil@…>
Parents:
8053a93cc9c21523dc20f9e26c05812e67bd3357
Children:
c29976f37fa4528b898c2529533ab3d5bc0edc42
git-committer:
Philipp Kern <phil@0x539.de> / 2007-01-06T22:29:26Z+0000
Message:

[project @ Changed Menu-Action 'Help' to 'MenuHelp?', for consistency with other actions]

Original author: Armin Burgmeier <armin@…>
Date: 2005-04-08 16:16:58+00:00

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • src/header.cpp

    ra2853fc refd6ded  
    8181        ); 
    8282 
     83        // Quit application 
     84        m_group_app->add( 
     85                Gtk::Action::create( 
     86                        "Quit", 
     87                        Gtk::Stock::QUIT, 
     88                        "Quit", 
     89                        "Quits the application" 
     90                ), 
     91                sigc::mem_fun( 
     92                        *this, 
     93                        &Header::on_app_quit 
     94                ) 
     95        ); 
     96 
    8397        // Session menu 
    8498        m_group_app->add(Gtk::Action::create("MenuSession", "Session") ); 
     
    127141 
    128142        // Help menu 
    129         m_group_app->add(Gtk::Action::create("Help", "Help") ); 
     143        m_group_app->add(Gtk::Action::create("MenuHelp", "Help") ); 
    130144 
    131145        // Display about dialog 
     
    140154                        *this, 
    141155                        &Header::on_app_about 
    142                 ) 
    143         ); 
    144  
    145         // Quit application 
    146         m_group_app->add( 
    147                 Gtk::Action::create( 
    148                         "Quit", 
    149                         Gtk::Stock::QUIT, 
    150                         "Quit", 
    151                         "Quits the application" 
    152                 ), 
    153                 sigc::mem_fun( 
    154                         *this, 
    155                         &Header::on_app_quit 
    156156                ) 
    157157        ); 
  • ui.xml

    ra2853fc refd6ded  
    1414      <menuitem action="CloseDocument" /> 
    1515    </menu> 
    16     <menu action="Help"> 
     16    <menu action="MenuHelp"> 
    1717      <menuitem action="About" /> 
    1818    </menu>