View | Details | Raw Unified
Collapse All | Expand All

(-) old/mysql-administrator/source/linux/MABackupPanel.cc (-1 / +1 lines)
 Lines 1282-1288    Link Here 
  if (_inst->check_connection())
  if (_inst->check_connection())
  {
  {
    SigC::Connection con= Glib::signal_timeout().connect(sigc::bind<void*>
    sigc::connection con= Glib::signal_timeout().connect(sigc::bind<void*>
                                                         (sigc::mem_fun(*this, &MABackupPanel::update_backup_progress),&arg.pdata),
                                                         (sigc::mem_fun(*this, &MABackupPanel::update_backup_progress),&arg.pdata),
                                                         50);
                                                         50);
    dlg->show();
    dlg->show();
(-) old/mysql-administrator/source/linux/MACatalogsPanel.cc (-3 / +3 lines)
 Lines 1488-1494    Link Here 
      _maint_dlg_xml->get_button("next_button")->set_sensitive(false);
      _maint_dlg_xml->get_button("next_button")->set_sensitive(false);
      _maint_dlg_xml->get_note("note")->set_current_page(4);
      _maint_dlg_xml->get_note("note")->set_current_page(4);
      SigC::Connection conn = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MACatalogsPanel::maint_pulse_progressbar), 200);
      sigc::connection conn = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MACatalogsPanel::maint_pulse_progressbar), 200);
      status= (MYX_TABLE_COMMAND_STATUSES*)
      status= (MYX_TABLE_COMMAND_STATUSES*)
        _data->get_instance()->perform_data_fetch3((MInstanceInfo::DataFetcher3)myx_optimize_table,
        _data->get_instance()->perform_data_fetch3((MInstanceInfo::DataFetcher3)myx_optimize_table,
 Lines 1528-1534    Link Here 
      _maint_dlg_xml->get_button("next_button")->set_sensitive(false);
      _maint_dlg_xml->get_button("next_button")->set_sensitive(false);
      _maint_dlg_xml->get_note("note")->set_current_page(4);      
      _maint_dlg_xml->get_note("note")->set_current_page(4);      
      SigC::Connection conn = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MACatalogsPanel::maint_pulse_progressbar), 200);
      sigc::connection conn = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MACatalogsPanel::maint_pulse_progressbar), 200);
      status= (MYX_TABLE_COMMAND_STATUSES*)
      status= (MYX_TABLE_COMMAND_STATUSES*)
        _data->get_instance()->perform_data_fetch3((MInstanceInfo::DataFetcher3)myx_check_table,
        _data->get_instance()->perform_data_fetch3((MInstanceInfo::DataFetcher3)myx_check_table,
 Lines 1568-1574    Link Here 
      _maint_dlg_xml->get_button("next_button")->set_sensitive(false);
      _maint_dlg_xml->get_button("next_button")->set_sensitive(false);
      _maint_dlg_xml->get_note("note")->set_current_page(4);
      _maint_dlg_xml->get_note("note")->set_current_page(4);
      SigC::Connection conn = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MACatalogsPanel::maint_pulse_progressbar), 200);
      sigc::connection conn = Glib::signal_timeout().connect(sigc::mem_fun(*this, &MACatalogsPanel::maint_pulse_progressbar), 200);
      status= (MYX_TABLE_COMMAND_STATUSES*)
      status= (MYX_TABLE_COMMAND_STATUSES*)
        _data->get_instance()->perform_data_fetch3((MInstanceInfo::DataFetcher3)myx_repair_table,
        _data->get_instance()->perform_data_fetch3((MInstanceInfo::DataFetcher3)myx_repair_table,
(-) old/mysql-administrator/source/linux/MAdministrator.h (-1 / +1 lines)
 Lines 66-72    Link Here 
    sigc::signal0<void> _signal_prefs_changed;
    sigc::signal0<void> _signal_prefs_changed;
    
    
    SigC::Connection _pulse_conn;
    sigc::connection _pulse_conn;
    bool pulse_progress();
    bool pulse_progress();
    
    
    void setup_sidebar();
    void setup_sidebar();
(-) old/mysql-administrator/source/linux/MARestorePanel.cc (-2 / +2 lines)
 Lines 728-734    Link Here 
  op_aborted= false;
  op_aborted= false;
  {
  {
    SigC::Connection con= Glib::signal_timeout().connect(sigc::bind<void*>
    sigc::connection con= Glib::signal_timeout().connect(sigc::bind<void*>
                                                         (sigc::mem_fun(*this, &MARestorePanel::update_status),&arg.pdata),
                                                         (sigc::mem_fun(*this, &MARestorePanel::update_status),&arg.pdata),
                                                         50);
                                                         50);
 Lines 854-860    Link Here 
  //{
  //{
    MYX_BACKUP_ERROR err;
    MYX_BACKUP_ERROR err;
    SigC::Connection con= Glib::signal_timeout().connect(sigc::bind<void*>
    sigc::connection con= Glib::signal_timeout().connect(sigc::bind<void*>
                                                         (sigc::mem_fun(*this, &MARestorePanel::update_status),&arg.pdata),
                                                         (sigc::mem_fun(*this, &MARestorePanel::update_status),&arg.pdata),
                                                         50);
                                                         50);
(-) old/mysql-administrator/source/linux/MAServerConnectionsPanel.h (-1 / +1 lines)
 Lines 87-93    Link Here 
    Glib::RefPtr<Gdk::Pixbuf> _thread_icon;
    Glib::RefPtr<Gdk::Pixbuf> _thread_icon;
    SigC::Connection _timer;
    sigc::connection _timer;
    
    
    int _current_page;
    int _current_page;
(-) old/mysql-gui-common/source/linux/MGConnectDialog.cc (-3 / +3 lines)
 Lines 659-667    Link Here 
  // select back the original item
  // select back the original item
  ((Gtk::OptionMenu*)_xml->get_widget("connection_list"))->set_history(_current_selected_item);
  ((Gtk::OptionMenu*)_xml->get_widget("connection_list"))->set_history(_current_selected_item);
  SigC::Connection c1= MGPreferencesEditor::instance()->signal_closed().connect(sigc::mem_fun(*this,
  sigc::connection c1= MGPreferencesEditor::instance()->signal_closed().connect(sigc::mem_fun(*this,
                                                                                           &MGConnectDialog::preferences_closed));
                                                                                           &MGConnectDialog::preferences_closed));
  SigC::Connection c2= MGPreferencesEditor::instance()->signal_changed().connect(sigc::mem_fun(*this,
  sigc::connection c2= MGPreferencesEditor::instance()->signal_changed().connect(sigc::mem_fun(*this,
                                                                                            &MGConnectDialog::preferences_changed));
                                                                                            &MGConnectDialog::preferences_changed));
  MGPreferencesEditor::instance()->show(true);
  MGPreferencesEditor::instance()->show(true);
  MGPreferencesEditor::instance()->set_modal(true);
  MGPreferencesEditor::instance()->set_modal(true);
 Lines 676-682    Link Here 
{
{
  Gtk::Button *btn;
  Gtk::Button *btn;
  pid_t ping_pid= 0;
  pid_t ping_pid= 0;
  SigC::Connection input_handler;
  sigc::connection input_handler;
  int rc;
  int rc;
  bool pinging= false;
  bool pinging= false;
  int myerror= 0;
  int myerror= 0;
(-) old/mysql-gui-common/source/linux/MGTreeTooltip.h (-1 / +1 lines)
 Lines 39-45    Link Here 
    
    
    WillShowSignal _show_signal;
    WillShowSignal _show_signal;
    
    
    SigC::Connection _timeout;
    sigc::connection _timeout;
    void expose_event(GdkEventExpose *event);
    void expose_event(GdkEventExpose *event);
    void leave_event(GdkEventCrossing *event);
    void leave_event(GdkEventCrossing *event);
(-) old/mysql-migration-tool/source/linux/GRTEnvironment.cc (-1 / +1 lines)
 Lines 76-82    Link Here 
}
}
void GRTEnvironment::set_shell_output_handler(const SigC::Slot1<void,const Glib::ustring&> &slot)
void GRTEnvironment::set_shell_output_handler(const sigc::slot1<void,const Glib::ustring&> &slot)
{
{
  _shellOutputHandler= slot;
  _shellOutputHandler= slot;
(-) old/mysql-migration-tool/source/linux/GRTEnvironment.h (-2 / +2 lines)
 Lines 28-34    Link Here 
    int _msgOffset;
    int _msgOffset;
    std::vector<Glib::ustring> _sourceObjectNames;
    std::vector<Glib::ustring> _sourceObjectNames;
    SigC::Slot1<void,const Glib::ustring&> _shellOutputHandler;
    sigc::slot1<void,const Glib::ustring&> _shellOutputHandler;
    
    
    static void process_shell_output(const char *text, void *udata);
    static void process_shell_output(const char *text, void *udata);
        
        
 Lines 42-48    Link Here 
    int init_jni(const std::string &classpath);
    int init_jni(const std::string &classpath);
    int execute_shell_command(const Glib::ustring &command);
    int execute_shell_command(const Glib::ustring &command);
    void set_shell_output_handler(const SigC::Slot1<void,const Glib::ustring&> &slot);
    void set_shell_output_handler(const sigc::slot1<void,const Glib::ustring&> &slot);
    MYX_GRT_OBJ *get_object(const Glib::ustring &name);
    MYX_GRT_OBJ *get_object(const Glib::ustring &name);
    bool object_implements_interface(MYX_GRT_OBJ *obj, const Glib::ustring &name);
    bool object_implements_interface(MYX_GRT_OBJ *obj, const Glib::ustring &name);
(-) old/mysql-migration-tool/source/linux/ObjectShell.cc (-3 / +3 lines)
 Lines 45-51    Link Here 
  tree->set_model(_otree);
  tree->set_model(_otree);
  
  
  tree->get_selection()->signal_changed().connect(SigC::slot(*this,&ObjectShell::object_selected));
  tree->get_selection()->signal_changed().connect(sigc::slot(*this,&ObjectShell::object_selected));
  
  
  
  
  tree= _xml->get_tree("inspector_tree");
  tree= _xml->get_tree("inspector_tree");
 Lines 57-65    Link Here 
  tree->set_model(_ilist);
  tree->set_model(_ilist);
  _xml->get_text("shell_text")->signal_key_press_event().connect(SigC::slot(*this,&ObjectShell::shell_key_press), false);
  _xml->get_text("shell_text")->signal_key_press_event().connect(sigc::slot(*this,&ObjectShell::shell_key_press), false);
  
  
  env->set_shell_output_handler(SigC::slot(*this,&ObjectShell::print_shell));
  env->set_shell_output_handler(sigc::slot(*this,&ObjectShell::print_shell));
  
  
  put_prompt();
  put_prompt();
}
}
(-) old/mysql-query-browser/source/linux/MQResultTab.h (-2 / +2 lines)
 Lines 45-51    Link Here 
      Gtk::Paned *paned;
      Gtk::Paned *paned;
      SigC::Connection scroll_con;
      sigc::connection scroll_con;
    };
    };
    
    
    enum CompareAction {
    enum CompareAction {
 Lines 71-77    Link Here 
    bool _vertical;
    bool _vertical;
    SigC::Connection _sync_con1, _sync_con2;
    sigc::connection _sync_con1, _sync_con2;
    void scrolled(MQResultSetView *sender);
    void scrolled(MQResultSetView *sender);
    void activated(MQResultSetView *sender);
    void activated(MQResultSetView *sender);