diff --git a/ChangeLog b/ChangeLog index a7ae8783..cfb5a74c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * src/Win_GParted.h, src/Win_GParted.cc: removed expander. The diskinfo is now always visible. * src/Dialog_Partition_Info.cc: fixed small bug with overlapping text. + * src/Dialog_About.cc: use VERSION instead of hardcoded numbers 2004-09-25 Bart Hakvoort * Dialog_About.cc: made "Translated by" tab a bit more sensible, also added an translator-credits string. diff --git a/src/Dialog_About.cc b/src/Dialog_About.cc index e28912b7..ed792379 100644 --- a/src/Dialog_About.cc +++ b/src/Dialog_About.cc @@ -30,7 +30,7 @@ Dialog_About::Dialog_About() this ->get_vbox()->pack_start( *label_temp ,Gtk::PACK_SHRINK ); label_temp = manage( new Gtk::Label() ) ; - label_temp -> set_markup( "" + (Glib::ustring) _( "GParted" ) + " 0.0.4" ) ; + label_temp -> set_markup( "" + (Glib::ustring) _( "GParted" ) + " " + VERSION + "" ) ; this ->get_vbox()->pack_start( *label_temp ,Gtk::PACK_SHRINK ); label_temp = manage( new Gtk::Label() ) ;