~ubuntu-branches/ubuntu/utopic/kdevelop-php/utopic

« back to all changes in this revision

Viewing changes to duchain/declarations/classdeclaration.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-12-20 14:59:02 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101220145902-a6cmovse1qmue52p
Tags: 1.1.80-0ubuntu1
* New upstream release
* Build-dep on kdevplatform >= 1.1.80
* Get rid of l10n packages, not relevant in Ubuntu, put locale files into main package

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
ClassDeclaration::ClassDeclaration(const ClassDeclaration& rhs)
32
32
        : KDevelop::ClassDeclaration(*new ClassDeclarationData(*rhs.d_func()))
33
33
{
34
 
    setSmartRange(rhs.smartRange(), DocumentRangeObject::DontOwn);
35
34
}
36
35
 
37
 
ClassDeclaration::ClassDeclaration(const KDevelop::SimpleRange& range, KDevelop::DUContext* context)
 
36
ClassDeclaration::ClassDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContext* context)
38
37
        : KDevelop::ClassDeclaration(*new ClassDeclarationData, range, context)
39
38
{
40
39
    d_func_dynamic()->setClassId(this);
48
47
{
49
48
}
50
49
 
51
 
ClassDeclaration::ClassDeclaration(ClassDeclarationData& data, const KDevelop::SimpleRange& range, KDevelop::DUContext* context)
 
50
ClassDeclaration::ClassDeclaration(ClassDeclarationData& data, const KDevelop::RangeInRevision& range, KDevelop::DUContext* context)
52
51
        : KDevelop::ClassDeclaration(data, range, context)
53
52
{
54
53
}