~ubuntu-branches/ubuntu/natty/sflphone/natty

« back to all changes in this revision

Viewing changes to sflphone-common/src/history/historyitem.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#define EMPTY_STRING        "empty"
39
39
 
40
40
HistoryItem::HistoryItem (std::string timestamp_start, CallType call_type, std::string timestamp_stop, std::string name, std::string number, std::string account_id)
41
 
        :       _timestamp_start (timestamp_start),
 
41
    :   _timestamp_start (timestamp_start),
42
42
        _timestamp_stop (timestamp_stop),
43
43
        _call_type (call_type),
44
44
        _name (name),
49
49
 
50
50
 
51
51
HistoryItem::HistoryItem (std::string timestamp, std::string serialized_form)
52
 
        : _timestamp_start (timestamp)
 
52
    : _timestamp_start (timestamp)
53
53
{
54
54
    size_t pos;
55
55
    std::string tmp, id, name, number, stop, account;