~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/src/config/config.h

  • 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:
201
201
 
202
202
        // defaultvalue = value
203
203
        ConfigTreeItem (const std::string& name, const std::string& value, const std::string& type) :
204
 
                _name (name), _value (value),
205
 
                _defaultValue (value), _type (type) {}
 
204
            _name (name), _value (value),
 
205
            _defaultValue (value), _type (type) {}
206
206
 
207
207
        ConfigTreeItem (const std::string& name, const std::string& value, const std::string& defaultValue, const std::string& type) :
208
 
                _name (name), _value (value),
209
 
                _defaultValue (defaultValue), _type (type) {}
 
208
            _name (name), _value (value),
 
209
            _defaultValue (defaultValue), _type (type) {}
210
210
 
211
211
        ~ConfigTreeItem() {}
212
212