From 16ca6f738fc70d3ed020f1f1630dfeea39879cb1 Mon Sep 17 00:00:00 2001 From: Bart Hakvoort Date: Sun, 26 Sep 2004 18:41:43 +0000 Subject: [PATCH] fixed bug that occured while converting the filesystem of a new partition --- ChangeLog | 6 +++++- src/Win_GParted.cc | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 79f1ad83..7308cc69 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-09-26 Bart Hakvoort + + * src/Win_GParted.cc: fixed bug that occured while converting the filesystem of a new partition + 2004-09-26 Bart Hakvoort * src/Win_GParted.cc: fixed bug with check for max amount of partitions while pasting a copied partition. @@ -25,7 +29,7 @@ as "then" in two strings) Dialog_Partition_Copy.cc, Dialog_Partition_Info.cc, Dialog_Partition_New.cc, - Win_GParted.cc: prepared "copy of" an "New Partition" for i18n and did some cleanups on the way... + Win_GParted.cc: prepared "copy of" and "New Partition" for i18n and did some cleanups on the way... I believe all relevant strings are now properly marked for translation. 2004-09-25 Bart Hakvoort diff --git a/src/Win_GParted.cc b/src/Win_GParted.cc index 374f36ef..086947a7 100644 --- a/src/Win_GParted.cc +++ b/src/Win_GParted.cc @@ -958,7 +958,8 @@ void Win_GParted::activate_convert( const Glib::ustring & new_fs ) { operations.erase( operations .begin() + t ) ; - //And add the new partition to the end of the operations list + //And add the new partition to the end of the operations list (NOTE: in this case we set status to STAT_NEW) + part_temp .status = STAT_NEW ; Add_Operation( GParted::CREATE, part_temp); break;