Removed redundant command flag options.
svn path=/trunk/; revision=1027
This commit is contained in:
parent
a52b989903
commit
6b44ab2a50
|
@ -1,3 +1,7 @@
|
||||||
|
2009-01-07 Curtis Gedak <gedakc@gmail.com>
|
||||||
|
|
||||||
|
* src/ntfs.cc: Removed redundant command flag options.
|
||||||
|
|
||||||
2009-01-06 Curtis Gedak <gedakc@gmail.com>
|
2009-01-06 Curtis Gedak <gedakc@gmail.com>
|
||||||
|
|
||||||
* src/GParted_Core.cc: Actually commit this file, and
|
* src/GParted_Core.cc: Actually commit this file, and
|
||||||
|
|
|
@ -105,13 +105,13 @@ bool ntfs::write_label( const Partition & partition, OperationDetail & operation
|
||||||
|
|
||||||
bool ntfs::create( const Partition & new_partition, OperationDetail & operationdetail )
|
bool ntfs::create( const Partition & new_partition, OperationDetail & operationdetail )
|
||||||
{
|
{
|
||||||
return ! execute_command( "mkntfs -Q -vv -L \"" + new_partition .label + "\" " + new_partition .get_path(), operationdetail ) ;
|
return ! execute_command( "mkntfs -Q -v -L \"" + new_partition .label + "\" " + new_partition .get_path(), operationdetail ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ntfs::resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition )
|
bool ntfs::resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition )
|
||||||
{
|
{
|
||||||
bool return_value = false ;
|
bool return_value = false ;
|
||||||
Glib::ustring str_temp = "ntfsresize -P --force --force " + partition_new .get_path() ;
|
Glib::ustring str_temp = "ntfsresize -P --force " + partition_new .get_path() ;
|
||||||
|
|
||||||
if ( ! fill_partition )
|
if ( ! fill_partition )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue