fix errormessage

* src/GParted_Core.cc: fix errormessage
This commit is contained in:
Bart Hakvoort 2006-08-31 20:27:10 +00:00
parent 34389f38e7
commit 9d18b3c9ae
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-08-31 Bart Hakvoort <hakvoort@cvs.gnome.org>
* src/GParted_Core.cc: fix errormessage
2006-08-31 Bart Hakvoort <hakvoort@cvs.gnome.org> 2006-08-31 Bart Hakvoort <hakvoort@cvs.gnome.org>
* include/GParted_Core.h, * include/GParted_Core.h,

View File

@ -1847,7 +1847,7 @@ bool GParted_Core::copy_block( PedDevice * lp_device_src,
error_message = String::ucompose( _("Error while writing block at sector %1"), offset_dst ) ; error_message = String::ucompose( _("Error while writing block at sector %1"), offset_dst ) ;
} }
else else
error_message = String::ucompose( _("Error while writing block at sector %1"), offset_dst ) ; error_message = String::ucompose( _("Error while reading block at sector %1"), offset_dst ) ;
free( buf ) ; free( buf ) ;
} }