From b971ec23ef8f74aaf8f2d8c0bf032614a0dd2cf0 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Tue, 13 Jan 2009 18:14:20 +0000 Subject: [PATCH] Removed space between menu entry and periods svn path=/trunk/; revision=1031 --- ChangeLog | 4 ++++ src/Win_GParted.cc | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b3d3f023..865a44f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-01-13 Curtis Gedak + + * src/Win_GParted.cc: Removed space between menu entry and periods. + 2009-01-07 Curtis Gedak * src/ntfs.cc: Removed redundant command flag options. diff --git a/src/Win_GParted.cc b/src/Win_GParted.cc index 1628906e..23b57c7b 100644 --- a/src/Win_GParted.cc +++ b/src/Win_GParted.cc @@ -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 ) );