diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2013-02-02 11:29:34 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2013-02-02 11:29:34 +0000 |
| commit | 36dd99ae68825bb28b7428f8018fbfdfb003bf36 (patch) | |
| tree | 75847e9f59e50375696f5a5e2dc0a408dcdc2fef /src/dom/smil.h | |
| parent | Win32. Adding libcdr (Corel Draw) support. (diff) | |
| download | inkscape-36dd99ae68825bb28b7428f8018fbfdfb003bf36.tar.gz inkscape-36dd99ae68825bb28b7428f8018fbfdfb003bf36.zip | |
cppcheck
(bzr r12092)
Diffstat (limited to 'src/dom/smil.h')
| -rw-r--r-- | src/dom/smil.h | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/src/dom/smil.h b/src/dom/smil.h index 15bc361ac..14870a4e4 100644 --- a/src/dom/smil.h +++ b/src/dom/smil.h @@ -193,7 +193,12 @@ public: /** * */ - ElementLayout() {} + ElementLayout() : + title(), + backgroundColor(), + height(0), + width(0) + {} /** * @@ -274,8 +279,9 @@ public: /** * */ - SMILRegionInterface(const SMILRegionInterface &other) - { regionElement = other.regionElement; } + SMILRegionInterface(const SMILRegionInterface &other) : + regionElement (other.regionElement) + {} /** * @@ -542,9 +548,9 @@ public: /** * */ - TimeList(const TimeList &other) + TimeList(const TimeList &other) : + items (other.items) { - items = other.items; } /** @@ -1586,7 +1592,15 @@ public: /** * */ - ElementTest() + ElementTest() : + systemBitrate (0), + systemCaptions (false), + systemLanguage (), + systemRequired (false), + systemScreenSize (false), + systemScreenDepth (false), + systemOverdubOrSubtitle (), + systemAudioDesc (false) { } @@ -1629,8 +1643,6 @@ public: protected: - - long systemBitrate; bool systemCaptions; DOMString systemLanguage; |
