diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2013-10-21 22:06:59 +0000 |
|---|---|---|
| committer | Johan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl> | 2013-10-21 22:06:59 +0000 |
| commit | 0e4d9c434c10d21a3134a674c742acf251a684d8 (patch) | |
| tree | 66a037e07ad8a6638d069ea77104273d63cedc9d /src | |
| parent | fix ambiguity error with C++11 (gcc 4.6.2 Windows) (diff) | |
| download | inkscape-0e4d9c434c10d21a3134a674c742acf251a684d8.tar.gz inkscape-0e4d9c434c10d21a3134a674c742acf251a684d8.zip | |
remove confusing bitfield declaration. bitfield not even needed here.
(bzr r12708)
Diffstat (limited to 'src')
| -rw-r--r-- | src/sp-root.cpp | 2 | ||||
| -rw-r--r-- | src/sp-root.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-root.cpp b/src/sp-root.cpp index c87c8397d..5466649a2 100644 --- a/src/sp-root.cpp +++ b/src/sp-root.cpp @@ -62,7 +62,7 @@ SPRoot::SPRoot() : SPGroup() this->width.unset(SVGLength::PERCENT, 1.0, 1.0); this->height.unset(SVGLength::PERCENT, 1.0, 1.0); - this->viewBox_set = FALSE; + this->viewBox_set = false; this->c2p.setIdentity(); diff --git a/src/sp-root.h b/src/sp-root.h index 47a37029d..2931391ff 100644 --- a/src/sp-root.h +++ b/src/sp-root.h @@ -41,7 +41,7 @@ public: SVGLength height; /* viewBox; */ - bool viewBox_set : true; + bool viewBox_set; Geom::Rect viewBox; /* preserveAspectRatio */ |
