nemiver r946 - in trunk: . src/persp/dbgperspective



Author: jjongsma
Date: Tue Nov 18 15:29:13 2008
New Revision: 946
URL: http://svn.gnome.org/viewvc/nemiver?rev=946&view=rev

Log:
Rearrange the Callstack columns to put the function name first

Currently the first column is the 'location', but if the location is an absolute
filesystem path and the directory structure is deep, it will often push the
function name way off to the right and even off the screen if the debugger
window is relatively narrow.  I think the most important information is the
function name, so I propose to move the 'Location' column to the end

http://bugzilla.gnome.org/show_bug.cgi?id=561378

Modified:
   trunk/ChangeLog
   trunk/src/persp/dbgperspective/nmv-call-stack.cc

Modified: trunk/src/persp/dbgperspective/nmv-call-stack.cc
==============================================================================
--- trunk/src/persp/dbgperspective/nmv-call-stack.cc	(original)
+++ trunk/src/persp/dbgperspective/nmv-call-stack.cc	Tue Nov 18 15:29:13 2008
@@ -497,9 +497,9 @@
         THROW_IF_FAIL (tree_view);
         widget.reset (tree_view);
         tree_view->append_column (_("Frame"), columns ().frame_index_caption);
-        tree_view->append_column (_("Location"), columns ().location);
         tree_view->append_column (_("Function"), columns ().function_name);
         tree_view->append_column (_("Arguments"), columns ().function_args);
+        tree_view->append_column (_("Location"), columns ().location);
         tree_view->set_headers_visible (true);
         tree_view->get_selection ()->set_mode (Gtk::SELECTION_SINGLE);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]