Author: dodji
Date: Thu Jan 17 22:08:14 2008
New Revision: 700
URL: http://svn.gnome.org/viewvc/nemiver?rev=700&view=rev
Log:
[vars treeview] cosmetic compliance changes.
Modified:
trunk/ChangeLog
trunk/src/persp/dbgperspective/nmv-vars-treeview.cc
Modified: trunk/src/persp/dbgperspective/nmv-vars-treeview.cc
==============================================================================
--- trunk/src/persp/dbgperspective/nmv-vars-treeview.cc (original)
+++ trunk/src/persp/dbgperspective/nmv-vars-treeview.cc Thu Jan 17 22:08:14 2008
@@ -31,7 +31,8 @@
NEMIVER_BEGIN_NAMESPACE (nemiver)
-VarsTreeViewSafePtr VarsTreeView::create ()
+VarsTreeViewSafePtr
+VarsTreeView::create ()
{
Glib::RefPtr<Gtk::TreeStore> model =
Gtk::TreeStore::create (vutil::get_variable_columns ());
@@ -47,30 +48,31 @@
get_selection ()->set_mode (Gtk::SELECTION_SINGLE) ;
//create the columns of the tree view
append_column (_("Variable"),
- vutil::get_variable_columns ().name) ;
+ vutil::get_variable_columns ().name) ;
Gtk::TreeViewColumn * col = get_column (0) ;
THROW_IF_FAIL (col) ;
col->set_resizable (true) ;
col->add_attribute (*col->get_first_cell_renderer (),
- "foreground-gdk",
- vutil::VariableColumns::FG_COLOR_OFFSET) ;
+ "foreground-gdk",
+ vutil::VariableColumns::FG_COLOR_OFFSET) ;
append_column (_("Value"), vutil::get_variable_columns ().value) ;
col = get_column (1) ;
THROW_IF_FAIL (col) ;
col->set_resizable (true) ;
col->add_attribute (*col->get_first_cell_renderer (),
- "foreground-gdk",
- vutil::VariableColumns::FG_COLOR_OFFSET) ;
+ "foreground-gdk",
+ vutil::VariableColumns::FG_COLOR_OFFSET) ;
append_column (_("Type"),
- vutil::get_variable_columns ().type_caption);
+ vutil::get_variable_columns ().type_caption);
col = get_column (2) ;
THROW_IF_FAIL (col) ;
col->set_resizable (true) ;
}
-Glib::RefPtr<Gtk::TreeStore>& VarsTreeView::get_tree_store ()
+Glib::RefPtr<Gtk::TreeStore>&
+VarsTreeView::get_tree_store ()
{
return m_tree_store;
}
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.