This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


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

[RFA] 100494 fix


The following patch is for 100494, changing a pair of checkbuttons
to radiobuttons.  Since the proper behaviour was already enforced
this is really only cosmetic, and changes no current control flow.

I apologise for being unaware of proper protocol for doing patches
on sourceware, this has already been checked in.  I will try to be
more circumspect in the future...

regards,
Larry

2000-10-26  Larry Smith  <lsmith@redhat.com>

        * change targetselection.itb: Run Program and Continue From Last Stop
        are now radio buttons rather than checkbuttons

Index: targetselection.itb
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/targetselection.itb,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- targetselection.itb	2000/09/12 20:04:11	1.4
+++ targetselection.itb	2000/10/26 20:47:57	1.5
@@ -488,11 +488,11 @@
   checkbutton $frame.load -text {Download Program} -variable $var
 
   set var [pref varname gdb/src/run_cont]
-  checkbutton $frame.cont -text {Continue from Last Stop} -variable $var \
+  radiobutton $frame.cont -text {Continue from Last Stop} -value 1 -variable $var \
     -command [code $this set_run run]
   
   set var [pref varname gdb/src/run_run]
-  checkbutton $frame.run -text {Run Program} -variable $var \
+  radiobutton $frame.run -text {Run Program} -value 1 -variable $var \
     -command [code $this set_run cont]
 
   # The after attaching command entry

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