This is the mail archive of the insight@sourceware.cygnus.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch for error when double-clicking on process in attach dialog


Hi, all...

I just checked in the following patch that fixes an error which would
arise if you double-clicked on a process in the Attach dialog if you
had not previously loaded the executable for the process.

Jim

Index: gdbtk/library/ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/ChangeLog,v
retrieving revision 1.2
diff -p -r1.2 ChangeLog
*** ChangeLog   2000/02/24 03:12:58     1.2
--- ChangeLog   2000/03/02 01:41:29
***************
*** 1,3 ****
--- 1,9 ----
+ 2000-03-01  James Ingham  <jingham@leda.cygnus.com>
+ 
+       * interface.tcl (_open_file): The window which had the focus could 
+       get deleted by the vwait implicit in the tk_getOpenFile call.  So
+       check and make sure it is still around before raising it...
+ 
  2000-02-23  Keith R Seitz  <kseitz@nwlink.com>
  
          * srctextwin.ith (_highlightAsmLine): Define new method.
Index: gdbtk/library/interface.tcl
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/interface.tcl,v
retrieving revision 1.1.1.1
diff -p -r1.1.1.1 interface.tcl
*** interface.tcl       2000/02/07 00:19:42     1.1.1.1
--- interface.tcl       2000/03/02 01:41:29
*************** proc _open_file {{file ""}} {
*** 776,784 ****
      ide_grab_support enable_all
      
      # If no one had the focus before, leave it that way (since I
!     # am not sure how this could happen...
      
!     if {$curFocus != ""} {
        raise [winfo toplevel $curFocus]
        focus $curFocus
      }
--- 776,786 ----
      ide_grab_support enable_all
      
      # If no one had the focus before, leave it that way (since I
!     # am not sure how this could happen...  Also, the vwait in 
!     # tk_getOpenFile could have allowed the curFocus window to actually
!     # be destroyed, so make sure it is still around.
      
!     if {$curFocus != "" && [winfo exists $curFocus]} {
        raise [winfo toplevel $curFocus]
        focus $curFocus
      }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]