Remove now unused Dialog_Progress::signal_get_libparted_version (!34)
... and related GParted_Core::get_libparted_version() method. Closes !34 - Display more version and configuration information
This commit is contained in:
parent
c1c20854b4
commit
707aaea56f
|
@ -41,7 +41,6 @@ public:
|
|||
~Dialog_Progress();
|
||||
|
||||
sigc::signal< bool, Operation * > signal_apply_operation ;
|
||||
sigc::signal< Glib::ustring > signal_get_libparted_version ;
|
||||
|
||||
private:
|
||||
void on_signal_update( const OperationDetail & operationdetail ) ;
|
||||
|
|
|
@ -66,7 +66,6 @@ public:
|
|||
const FS & get_fs( FSType filesystem ) const;
|
||||
static std::vector<Glib::ustring> get_disklabeltypes() ;
|
||||
std::map<Glib::ustring, bool> get_available_flags( const Partition & partition ) ;
|
||||
Glib::ustring get_libparted_version() ;
|
||||
Glib::ustring get_thread_status_message() ;
|
||||
|
||||
static FileSystem * get_filesystem_object( FSType fstype );
|
||||
|
|
|
@ -861,10 +861,6 @@ std::map<Glib::ustring, bool> GParted_Core::get_available_flags( const Partition
|
|||
return flag_info ;
|
||||
}
|
||||
|
||||
Glib::ustring GParted_Core::get_libparted_version()
|
||||
{
|
||||
return ped_get_version() ;
|
||||
}
|
||||
|
||||
//private functions...
|
||||
|
||||
|
|
|
@ -3421,8 +3421,6 @@ void Win_GParted::activate_apply()
|
|||
dialog_progress .set_transient_for( *this ) ;
|
||||
dialog_progress .signal_apply_operation .connect(
|
||||
sigc::mem_fun(gparted_core, &GParted_Core::apply_operation_to_disk) ) ;
|
||||
dialog_progress .signal_get_libparted_version .connect(
|
||||
sigc::mem_fun(gparted_core, &GParted_Core::get_libparted_version) ) ;
|
||||
|
||||
int response ;
|
||||
do
|
||||
|
|
Loading…
Reference in New Issue