diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-01-24 07:42:54 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-01-24 07:42:54 +0800 |
commit | 9d3fd8c92531b33d5974b790c092c06f914a6282 (patch) | |
tree | e07518050631c868d8ae7695f911c28298ec9976 /executive-summary/component/e-summary-prefs.h | |
parent | e441180783a0d5af0664b991bd99906f5bd993f5 (diff) | |
download | gsoc2013-evolution-9d3fd8c92531b33d5974b790c092c06f914a6282.tar gsoc2013-evolution-9d3fd8c92531b33d5974b790c092c06f914a6282.tar.gz gsoc2013-evolution-9d3fd8c92531b33d5974b790c092c06f914a6282.tar.bz2 gsoc2013-evolution-9d3fd8c92531b33d5974b790c092c06f914a6282.tar.lz gsoc2013-evolution-9d3fd8c92531b33d5974b790c092c06f914a6282.tar.xz gsoc2013-evolution-9d3fd8c92531b33d5974b790c092c06f914a6282.tar.zst gsoc2013-evolution-9d3fd8c92531b33d5974b790c092c06f914a6282.zip |
Lots of stuff like memory leaks and things I forgot ages ago...
Enjoy.
svn path=/trunk/; revision=7763
Diffstat (limited to 'executive-summary/component/e-summary-prefs.h')
-rw-r--r-- | executive-summary/component/e-summary-prefs.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/executive-summary/component/e-summary-prefs.h b/executive-summary/component/e-summary-prefs.h index 95fc6af2c2..9dc7b09404 100644 --- a/executive-summary/component/e-summary-prefs.h +++ b/executive-summary/component/e-summary-prefs.h @@ -26,12 +26,19 @@ typedef struct _ESummaryPrefs ESummaryPrefs; struct _ESummaryPrefs { - char *page; + char *page; /* Background HTML page URL */ + int columns; /* Number of components per row (Default = 3) */ + + /* If anything is added here, don't forget to add + copy, compare, load and save routines to the appropriate + functions. */ }; ESummaryPrefs *e_summary_prefs_new (void); void e_summary_prefs_free (ESummaryPrefs *prefs); ESummaryPrefs *e_summary_prefs_copy (ESummaryPrefs *prefs); +gboolean e_summary_prefs_compare (ESummaryPrefs *p1, + ESummaryPrefs *p2); ESummaryPrefs *e_summary_prefs_load (const char *path); void e_summary_prefs_save (ESummaryPrefs *prefs, const char *path); |