renamed resize_partition to resize_move_partition to better reflect its
* include/GParted_Core.h, src/GParted_Core.cc: renamed resize_partition to resize_move_partition to better reflect its functionality.
This commit is contained in:
parent
8fecbac1d0
commit
b223e829ab
|
@ -1,3 +1,9 @@
|
|||
2006-06-18 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||
|
||||
* include/GParted_Core.h,
|
||||
src/GParted_Core.cc: renamed resize_partition to
|
||||
resize_move_partition to better reflect its functionality.
|
||||
|
||||
2006-06-18 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||
|
||||
* include/GParted_Core.h,
|
||||
|
|
|
@ -98,7 +98,7 @@ private:
|
|||
const Partition & partition_old,
|
||||
Partition & partition_new,
|
||||
std::vector<OperationDetails> & operation_detail ) ;
|
||||
bool resize_partition( const Partition & partition_old,
|
||||
bool resize_move_partition( const Partition & partition_old,
|
||||
Partition & partition_new,
|
||||
bool fixed_start,
|
||||
std::vector<OperationDetails> & operation_details,
|
||||
|
|
|
@ -1041,7 +1041,7 @@ bool GParted_Core::move( const Device & device,
|
|||
if ( move_filesystem( partition_old, temp, operation_details ) )
|
||||
{
|
||||
//now move the partition
|
||||
if ( resize_partition( partition_old,
|
||||
if ( resize_move_partition( partition_old,
|
||||
temp,
|
||||
false,
|
||||
operation_details,
|
||||
|
@ -1065,7 +1065,7 @@ bool GParted_Core::move( const Device & device,
|
|||
//now we can move it
|
||||
partition_new .sector_end = partition_new .sector_start + temp .get_length() -1 ;
|
||||
return move_filesystem( temp, partition_new, operation_details ) &&
|
||||
resize_partition( temp,
|
||||
resize_move_partition( temp,
|
||||
partition_new,
|
||||
false,
|
||||
operation_details,
|
||||
|
@ -1076,7 +1076,7 @@ bool GParted_Core::move( const Device & device,
|
|||
}
|
||||
else
|
||||
return move_filesystem( partition_old, partition_new, operation_details ) &&
|
||||
resize_partition( partition_old,
|
||||
resize_move_partition( partition_old,
|
||||
partition_new,
|
||||
false,
|
||||
operation_details,
|
||||
|
@ -1275,7 +1275,7 @@ bool GParted_Core::resize( const Device & device,
|
|||
{
|
||||
//extended partition
|
||||
if ( partition_old .type == GParted::TYPE_EXTENDED )
|
||||
return resize_partition( partition_old, partition_new, false, operation_details ) ;
|
||||
return resize_move_partition( partition_old, partition_new, false, operation_details ) ;
|
||||
|
||||
bool succes = false ;
|
||||
|
||||
|
@ -1305,7 +1305,7 @@ bool GParted_Core::resize( const Device & device,
|
|||
succes = resize_filesystem( partition_old, partition_new, operation_details, device .cylsize ) ;
|
||||
|
||||
if ( succes )
|
||||
succes = resize_partition(
|
||||
succes = resize_move_partition(
|
||||
partition_old,
|
||||
partition_new,
|
||||
! get_fs( partition_new .filesystem ) .move,
|
||||
|
@ -1328,7 +1328,7 @@ bool GParted_Core::resize( const Device & device,
|
|||
return false ;
|
||||
}
|
||||
|
||||
bool GParted_Core::resize_partition( const Partition & partition_old,
|
||||
bool GParted_Core::resize_move_partition( const Partition & partition_old,
|
||||
Partition & partition_new,
|
||||
bool fixed_start,
|
||||
std::vector<OperationDetails> & operation_details,
|
||||
|
|
Loading…
Reference in New Issue