~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to krita/image/tests/kis_node_test.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    bool allowAsChild(KisNodeSP) const {
35
35
        return true;
36
36
    }
 
37
    const KoColorSpace * colorSpace() const {
 
38
        return 0;
 
39
    }
 
40
    virtual const KoCompositeOp * compositeOp() const {
 
41
        return 0;
 
42
    }
37
43
 
38
44
    using KisNode::setDirty;
39
45
 
56
62
    bool allowAsChild(KisNodeSP) const {
57
63
        return true;
58
64
    }
 
65
    const KoColorSpace * colorSpace() const {
 
66
        return 0;
 
67
    }
 
68
    virtual const KoCompositeOp * compositeOp() const {
 
69
        return 0;
 
70
    }
59
71
};
60
72
 
61
73
class TestNodeB : public KisNode
68
80
    bool allowAsChild(KisNodeSP) const {
69
81
        return true;
70
82
    }
 
83
    const KoColorSpace * colorSpace() const {
 
84
        return 0;
 
85
    }
 
86
    virtual const KoCompositeOp * compositeOp() const {
 
87
        return 0;
 
88
    }
71
89
};
72
90
 
73
91
class TestNodeC : public KisNode
80
98
    bool allowAsChild(KisNodeSP) const {
81
99
        return true;
82
100
    }
 
101
    const KoColorSpace * colorSpace() const {
 
102
        return 0;
 
103
    }
 
104
    virtual const KoCompositeOp * compositeOp() const {
 
105
        return 0;
 
106
    }
83
107
};
84
108
 
85
109