[SCM] master: swagiaal: Updated CurrentStackView to pass boolean argument to Frame.toPrint().
swagiaal@sourceware.org
swagiaal@sourceware.org
Mon Nov 26 17:40:00 GMT 2007
The branch, master has been updated
via 44b5364cebf74aa00bf173ecc90ae6e1e874e7df (commit)
from 135c45a136420c58d54870c399082358a6446e3d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email.
- Log -----------------------------------------------------------------
commit 44b5364cebf74aa00bf173ecc90ae6e1e874e7df
Author: Sami Wagiaalla <swagiaal@redhat.com>
Date: Mon Nov 26 12:36:09 2007 -0500
swagiaal: Updated CurrentStackView to pass boolean argument to Frame.toPrint().
frysk-gui/frysk/gui/srcwin/ChangeLog
+2007-11-26 Sami Wagiaalla <swagiaal@redhat.com>
+
+ Added a boolean for printing source libraries to Frame.toPrint().
+ * CurrentStackView.java (appendRows): Updated.
+
-----------------------------------------------------------------------
Summary of changes:
frysk-gui/frysk/gui/srcwin/ChangeLog | 5 +++++
frysk-gui/frysk/gui/srcwin/CurrentStackView.java | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
First 500 lines of diff:
diff --git a/frysk-gui/frysk/gui/srcwin/ChangeLog b/frysk-gui/frysk/gui/srcwin/ChangeLog
index a65e876..e751ce4 100644
--- a/frysk-gui/frysk/gui/srcwin/ChangeLog
+++ b/frysk-gui/frysk/gui/srcwin/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-26 Sami Wagiaalla <swagiaal@redhat.com>
+
+ Added a boolean for printing source libraries to Frame.toPrint().
+ * CurrentStackView.java (appendRows): Updated.
+
2007-10-28 Andrew Cagney <cagney@redhat.com>
* SourceView.java: Catch RuntimeException instead of
diff --git a/frysk-gui/frysk/gui/srcwin/CurrentStackView.java b/frysk-gui/frysk/gui/srcwin/CurrentStackView.java
index 92b3918..64ff2da 100644
--- a/frysk-gui/frysk/gui/srcwin/CurrentStackView.java
+++ b/frysk-gui/frysk/gui/srcwin/CurrentStackView.java
@@ -196,7 +196,7 @@ public class CurrentStackView
StringWriter stringWriter = new StringWriter();
stringWriter.write("# " + (++level) + " ");
- frame.toPrint(new PrintWriter(stringWriter),true);
+ frame.toPrint(new PrintWriter(stringWriter),true,true);
row = stringWriter.toString();
if (hasInlinedCode)
@@ -315,7 +315,7 @@ public class CurrentStackView
StringWriter stringWriter = new StringWriter();
stringWriter.write(row = "# " + (++level) + " ");
- frame.toPrint(new PrintWriter(stringWriter),true);
+ frame.toPrint(new PrintWriter(stringWriter),true,true);
row = stringWriter.toString();
if (hasInlinedCode)
hooks/post-receive
--
frysk system monitor/debugger
More information about the Frysk-cvs
mailing list