Moved menu entry "Gparted->Show Features" to "View->File System Support"

svn path=/trunk/; revision=964
This commit is contained in:
Curtis Gedak 2008-11-14 19:41:14 +00:00
parent 5b8c16ba60
commit 75a03f157f
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-11-14 Curtis Gedak <gedakc@gmail.com>
* src/Win_GParted.cc: Moved menu entry
- "Gparted->Show Features" moved to "View->File System Support".
2008-11-13 Curtis Gedak <gedakc@gmail.com>
* include/FS_Info.h,

View File

@ -141,9 +141,6 @@ void Win_GParted::init_menubar()
image = manage( new Gtk::Image( Gtk::Stock::HARDDISK, Gtk::ICON_SIZE_MENU ) );
menu ->items() .push_back( Gtk::Menu_Helpers::ImageMenuElem( _("_Devices"), *image ) ) ;
menu ->items() .push_back( Gtk::Menu_Helpers::SeparatorElem( ) );
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem(
_("_Show Features"), sigc::mem_fun( *this, &Win_GParted::menu_gparted_features ) ) );
menu ->items() .push_back( Gtk::Menu_Helpers::SeparatorElem( ) );
menu ->items() .push_back( Gtk::Menu_Helpers::StockMenuElem(
Gtk::Stock::QUIT, sigc::mem_fun(*this, &Win_GParted::menu_gparted_quit) ) );
@ -176,6 +173,10 @@ void Win_GParted::init_menubar()
_("Pending _Operations"), sigc::mem_fun(*this, &Win_GParted::menu_view_operations) ) );
menubar_main .items() .push_back( Gtk::Menu_Helpers::MenuElem( _("_View"), *menu ) );
menu ->items() .push_back( Gtk::Menu_Helpers::SeparatorElem( ) );
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem(
_("_File System Support"), sigc::mem_fun( *this, &Win_GParted::menu_gparted_features ) ) );
//device
menu = manage( new Gtk::Menu() ) ;
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem( Glib::ustring( _("_Create Partition Table") ) + " ...",