This is the mail archive of the insight@sources.redhat.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]

Re: insight connect window launching issues


On Thu, 5 Jul 2001, Niraj Gupta wrote:

> this top of the tree in cvs for insight, been seeing this for last couple of
> weeks,

I was just checking to see if anyone was actually checking out insight...
NOT! :-)

I've checked in a patch for this.

> also i see this warning/error during compilation,
> use of tmpnam is dangerous, use mkstemp instead while compiling some of the
> files, issuing a recompile continues and finishes compilation

I have no idea what you might be talking about. Can you give me some more
details (the exact error from make)?

Thanks for the bug pointer
Keith

Index: managedwin.itb
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/managedwin.itb,v
retrieving revision 1.15
diff -u -p -r1.15 managedwin.itb
--- managedwin.itb	2001/06/18 17:13:30	1.15
+++ managedwin.itb	2001/07/05 23:02:24
@@ -244,11 +244,13 @@ body ManagedWin::_create { class args }
   wm minsize $top 20 20
   update idletasks

-  if {$over != "" || $center} {
+  if {$over != ""} {
     # center new window
     center_window $top -over [winfo toplevel [namespace tail $over]]
+  } elseif {$center} {
+    center_window $top
   }
-
+
   if {$transient} {
     wm resizable $top 0 0
     wm transient $top .


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