~ubuntu-branches/ubuntu/trusty/syncevolution/trusty-proposed

« back to all changes in this revision

Viewing changes to src/backends/evolution/EvolutionMemoSource.h

  • Committer: Bazaar Package Importer
  • Author(s): Tino Keitel
  • Date: 2011-07-20 16:02:02 UTC
  • mfrom: (3.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20110720160202-e8uf7ogw4vh0q0f3
Tags: 1.1.99.5a-1
* New upstream version 1.1.99.5a, first release candiate for 1.2
* Added python-openssl dependency, the HTTP server needs it for HTTPS support
* Added versioned dependency on libsynthesis0 to get required features
* Fixed .orig.tar.gz generation in get-orig-source target
* Added myself to Uploaders:, thanks to David for sponsoring
* Use updated upstream tag for source package generation
* Removed 0001-Replace-with-in-call-to-PKG_CHECK_MODULES.patch, fixed upstream
* Renamed NEWS.Debian to NEWS so that it is actually used
* Updated NEWS for 1.1.99.5a

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    //
45
45
    virtual InsertItemResult insertItem(const string &uid, const std::string &item, bool raw);
46
46
    void readItem(const std::string &luid, std::string &item, bool raw);
47
 
    virtual const char *getMimeType() const { return "text/plain"; }
48
 
    virtual const char *getMimeVersion() const { return "1.0"; }
49
 
    virtual const char *getSupportedTypes() const { return "text/plain:1.0"; }    
 
47
    virtual std::string getMimeType() const { return "text/plain"; }
 
48
    virtual std::string getMimeVersion() const { return "1.0"; }
50
49
 
51
50
 private:
52
51
    bool isNativeType(const char *type);