aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-tree-memory.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-09-02 12:19:22 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-09-02 12:19:22 +0800
commit8e47917e8c7126aee49f98826ef67623346546e8 (patch)
tree94e5754591bf53d374ce010dc2bd84d312839338 /widgets/table/e-tree-memory.c
parent29e4139610f8ff983c440167d9ea704e2ac89a9e (diff)
downloadgsoc2013-evolution-8e47917e8c7126aee49f98826ef67623346546e8.tar
gsoc2013-evolution-8e47917e8c7126aee49f98826ef67623346546e8.tar.gz
gsoc2013-evolution-8e47917e8c7126aee49f98826ef67623346546e8.tar.bz2
gsoc2013-evolution-8e47917e8c7126aee49f98826ef67623346546e8.tar.lz
gsoc2013-evolution-8e47917e8c7126aee49f98826ef67623346546e8.tar.xz
gsoc2013-evolution-8e47917e8c7126aee49f98826ef67623346546e8.tar.zst
gsoc2013-evolution-8e47917e8c7126aee49f98826ef67623346546e8.zip
Update FSF address in header comments (#469886). Patch from Tobias
2007-09-02 Matthew Barnes <mbarnes@redhat.com> * Update FSF address in header comments (#469886). Patch from Tobias Mueller. svn path=/trunk/; revision=34151
Diffstat (limited to 'widgets/table/e-tree-memory.c')
-rw-r--r--widgets/table/e-tree-memory.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/widgets/table/e-tree-memory.c b/widgets/table/e-tree-memory.c
index a221512c18..4ea1e01c3d 100644
--- a/widgets/table/e-tree-memory.c
+++ b/widgets/table/e-tree-memory.c
@@ -18,8 +18,8 @@
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
*/
#include <config.h>
@@ -421,9 +421,18 @@ e_tree_memory_new (void)
return (ETreeMemory *) g_object_new (E_TREE_MEMORY_TYPE, NULL);
}
+/**
+ * e_tree_memory_set_expanded_default
+ *
+ * Sets the state of nodes to be append to a thread.
+ * They will either be expanded or collapsed, according to
+ * the value of @expanded.
+ */
void
e_tree_memory_set_expanded_default (ETreeMemory *etree, gboolean expanded)
{
+ g_return_if_fail (etree != NULL);
+
etree->priv->expanded_default = expanded;
}