~ubuntu-branches/ubuntu/trusty/anjuta/trusty

« back to all changes in this revision

Viewing changes to plugins/debug-manager/start.c

  • Committer: Package Import Robot
  • Author(s): Steve Ovens
  • Date: 2014-01-03 21:06:06 UTC
  • mfrom: (1.1.55)
  • Revision ID: package-import@ubuntu.com-20140103210606-pmvzhu0s68qy6261
Tags: 2:3.10.2-0ubuntu1
* New upstream release (LP: #1266037)
- Updated Build-Depends of libgtk-3-dev (>= 3.6.0),
  libglib2.0-dev (>= 2.34.0)

Show diffs side-by-side

added added

removed removed

Lines of Context:
297
297
 *---------------------------------------------------------------------------*/
298
298
 
299
299
static AttachProcess *
300
 
attach_process_new ()
 
300
attach_process_new (void)
301
301
{
302
302
        AttachProcess *ap;
303
303
        ap = g_new0 (AttachProcess, 1);
861
861
                DO_NOT_SHOW_CHECK, &do_not_show,
862
862
                    NULL);
863
863
                g_object_unref (bxml);
864
 
        
 
864
 
 
865
                gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
865
866
                res = gtk_dialog_run (GTK_DIALOG (dialog));
866
867
        
867
868
                if (gtk_toggle_button_get_active        (do_not_show))
1123
1124
        GtkWidget *serial_container;
1124
1125
        gint res;
1125
1126
 
1126
 
        parent = GTK_WINDOW (this->plugin->shell);
1127
 
 
1128
1127
        /* Fetch out the widget we care about for now */
1129
1128
        bxml = anjuta_util_builder_new (GLADE_FILE, NULL);
1130
1129
        if (!bxml) return FALSE;
1140
1139
            NULL);
1141
1140
        g_object_unref (bxml);
1142
1141
 
 
1142
        parent = GTK_WINDOW (this->plugin->shell);
 
1143
        gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
 
1144
 
1143
1145
        /* Connect signals */   
1144
1146
        g_signal_connect (G_OBJECT (tcpip_radio), "toggled", G_CALLBACK (on_radio_toggled), tcpip_container);
1145
1147
        g_signal_connect (G_OBJECT (serial_radio), "toggled", G_CALLBACK (on_radio_toggled), serial_container);