added *.swp some modifications to pass 'make distcheck' minor cleanups
* include/.cvsignore, src/.cvsignore: added *.swp * Makefile.am, include/Dialog_Filesystems.h: some modifications to pass 'make distcheck' * src/GParted_Core.cc: minor cleanups
This commit is contained in:
parent
1382c7bc17
commit
e59276389e
|
@ -1,3 +1,11 @@
|
||||||
|
2005-11-25 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
|
* include/.cvsignore,
|
||||||
|
src/.cvsignore: added *.swp
|
||||||
|
* Makefile.am,
|
||||||
|
include/Dialog_Filesystems.h: some modifications to pass 'make
|
||||||
|
distcheck'
|
||||||
|
* src/GParted_Core.cc: minor cleanups
|
||||||
|
|
||||||
2005-11-24 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
2005-11-24 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
* include/FileSystem.h: cleanups
|
* include/FileSystem.h: cleanups
|
||||||
* include/GParted_Core.h,
|
* include/GParted_Core.h,
|
||||||
|
|
10
Makefile.am
10
Makefile.am
|
@ -11,4 +11,12 @@ desktop_DATA = $(DESKTOP_FILES)
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
$(DESKTOP_IN_FILES) \
|
$(DESKTOP_IN_FILES) \
|
||||||
$(DESKTOP_FILES) \
|
$(DESKTOP_FILES) \
|
||||||
intltool-extract.in intltool-merge.in intltool-update.in
|
intltool-extract.in \
|
||||||
|
intltool-merge.in \
|
||||||
|
intltool-update.in
|
||||||
|
|
||||||
|
DISTCLEANFILES = \
|
||||||
|
intltool-extract \
|
||||||
|
intltool-merge \
|
||||||
|
intltool-update \
|
||||||
|
$(desktop_DATA)
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
|
*.swp
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#ifndef DIALOG_FILESYSTEMS
|
#ifndef DIALOG_FILESYSTEMS
|
||||||
#define DIALOG_FILESYSTEMS
|
#define DIALOG_FILESYSTEMS
|
||||||
|
|
||||||
#include "include/Utils.h"
|
#include "../include/Utils.h"
|
||||||
#include "../include/i18n.h"
|
#include "../include/i18n.h"
|
||||||
|
|
||||||
#include <gtkmm/dialog.h>
|
#include <gtkmm/dialog.h>
|
||||||
|
|
|
@ -4,3 +4,4 @@ Makefile.in
|
||||||
.libs
|
.libs
|
||||||
gparted
|
gparted
|
||||||
*.o
|
*.o
|
||||||
|
*.swp
|
||||||
|
|
|
@ -796,7 +796,7 @@ void GParted_Core::set_partition_type( const Glib::ustring & device_path, const
|
||||||
c_partition = ped_disk_get_partition_by_sector( disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
c_partition = ped_disk_get_partition_by_sector( disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
||||||
|
|
||||||
if ( c_partition && ped_partition_set_system( c_partition, fs_type ) && Commit( disk ) )
|
if ( c_partition && ped_partition_set_system( c_partition, fs_type ) && Commit( disk ) )
|
||||||
sleep( 1 ) ; //paranoia: give the OS some time to update nodes in /dev
|
sleep( 1 ) ; //the OS needs some time to update nodes in /dev
|
||||||
}
|
}
|
||||||
|
|
||||||
close_device_and_disk( device, disk ) ;
|
close_device_and_disk( device, disk ) ;
|
||||||
|
|
Loading…
Reference in New Issue