~ubuntu-branches/ubuntu/trusty/gparted/trusty

« back to all changes in this revision

Viewing changes to include/fat16.h

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2010-10-30 11:08:59 UTC
  • mfrom: (6.3.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20101030110859-2pgeh1y8p7z8tsb6
Tags: 0.7.0-1
New upstream release
Fix gparted crash at start with glibmm-ERROR
Closes: 601818
LP: #609477, #617885
Fix crash moving more than one logical partition right
Closes: 601817
Skip move/copy action because linux swap contains no data
LP: #401228
Fix several memory leaks and valgrind errors
Remove unnecessary null pointer checks
Fix partitions moved or copied are 1 MiB larger
Insert additional translator comments
Add initial support for btrfs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Copyright (C) 2004 Bart
2
 
 * Copyright (C) 2008 Curtis Gedak
 
2
 * Copyright (C) 2008, 2009, 2010 Curtis Gedak
3
3
 *
4
4
 *  This program is free software; you can redistribute it and/or modify
5
5
 *  it under the terms of the GNU General Public License as published by
34
34
        bool write_label( const Partition & partition, OperationDetail & operationdetail ) ;
35
35
        bool create( const Partition & new_partition, OperationDetail & operationdetail ) ;
36
36
        bool resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition = false ) ;
 
37
        bool move( const Partition & partition_new
 
38
                 , const Partition & partition_old
 
39
                 , OperationDetail & operationdetail
 
40
                 ) ;
37
41
        bool copy( const Glib::ustring & src_part_path,
38
42
                   const Glib::ustring & dest_part_path,
39
43
                   OperationDetail & operationdetail ) ;