Removed space between menu entry and periods

svn path=/trunk/; revision=1031
This commit is contained in:
Curtis Gedak 2009-01-13 18:14:20 +00:00
parent f94f937222
commit b971ec23ef
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2009-01-13 Curtis Gedak <gedakc@gmail.com>
* src/Win_GParted.cc: Removed space between menu entry and periods.
2009-01-07 Curtis Gedak <gedakc@gmail.com>
* src/ntfs.cc: Removed redundant command flag options.

View file

@ -179,7 +179,7 @@ void Win_GParted::init_menubar()
//device
menu = manage( new Gtk::Menu() ) ;
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem( Glib::ustring( _("_Create Partition Table") ) + " ...",
menu ->items() .push_back( Gtk::Menu_Helpers::MenuElem( Glib::ustring( _("_Create Partition Table") ) + "...",
sigc::mem_fun(*this, &Win_GParted::activate_disklabel) ) );
menubar_main .items() .push_back( Gtk::Menu_Helpers::MenuElem( _("_Device"), *menu ) );