~ubuntu-branches/ubuntu/maverick/evolution-data-server/maverick-proposed

« back to all changes in this revision

Viewing changes to camel/camel-vee-summary.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
#define d(x)
43
43
 
44
44
static CamelFolderSummaryClass *camel_vee_summary_parent;
45
 
const gchar *unread_str = " (and\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n;  (or\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n; (match-threads \"all\"  (and\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n)\n;  (match-threads \"all\"  (or\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n)\n;";
 
45
static const gchar *unread_str = " (and\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n;  (or\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n; (match-threads \"all\"  (and\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n)\n;  (match-threads \"all\"  (or\n  \n     (match-all (not (system-flag  \"Seen\")))\n    \n  )\n)\n;";
46
46
 
47
47
static void
48
48
vee_message_info_free(CamelFolderSummary *s, CamelMessageInfo *info)
196
196
        return res;
197
197
}
198
198
 
 
199
/**
 
200
 * camel_vee_summary_load_check_unread_vfolder:
 
201
 *
 
202
 * Since: 2.26
 
203
 **/
199
204
void
200
205
camel_vee_summary_load_check_unread_vfolder (CamelVeeSummary *vs)
201
206
{
441
446
 * This will create a new CamelVeeSummary object and read in the
442
447
 * summary data from disk, if it exists.
443
448
 *
444
 
 * Return value: A new CamelVeeSummary object.
 
449
 * Returns: A new CamelVeeSummary object.
445
450
 **/
446
451
CamelFolderSummary *
447
452
camel_vee_summary_new(CamelFolder *parent)
463
468
        return &s->summary;
464
469
}
465
470
 
 
471
/**
 
472
 * camel_vee_summary_get_ids:
 
473
 *
 
474
 * Since: 2.24
 
475
 **/
466
476
GPtrArray *
467
477
camel_vee_summary_get_ids (CamelVeeSummary *summary, gchar hash[8])
468
478
{