diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2013-04-22 12:19:57 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2013-04-22 12:19:57 +0000 |
| commit | 370881548b1d8f65def9aa03254316aa22c3b670 (patch) | |
| tree | b07e3f793a02731be6e486245bbfde998b6894d0 /src/style.cpp | |
| parent | fix warnings (diff) | |
| download | inkscape-370881548b1d8f65def9aa03254316aa22c3b670.tar.gz inkscape-370881548b1d8f65def9aa03254316aa22c3b670.zip | |
define booleans as booleans (prevent future errors in comparisons)
(bzr r12297)
Diffstat (limited to 'src/style.cpp')
| -rw-r--r-- | src/style.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/style.cpp b/src/style.cpp index ca89e6f65..479f30597 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -4358,7 +4358,7 @@ sp_style_write_ifilter(gchar *p, gint const len, gchar const *key, } SPIPaint::SPIPaint() : - set(0), + set(false), inherit(0), currentcolor(0), colorSet(0), |
