diff options
| author | Ralf Stephan <ralf@ark.in-berlin.de> | 2006-01-18 15:36:35 +0000 |
|---|---|---|
| committer | rwst <rwst@users.sourceforge.net> | 2006-01-18 15:36:35 +0000 |
| commit | c825f6cca3c4eac6a2a6edd473deb424d13b725c (patch) | |
| tree | a3b1acef81aaa173d7ab8318d80fe96df9c8621b /src | |
| parent | fix sticking highlight in selector knots (diff) | |
| download | inkscape-c825f6cca3c4eac6a2a6edd473deb424d13b725c.tar.gz inkscape-c825f6cca3c4eac6a2a6edd473deb424d13b725c.zip | |
adapt includes to glib 2.9 changes
(bzr r15)
Diffstat (limited to 'src')
| -rw-r--r-- | src/svg/svg-color.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/svg/svg-color.cpp b/src/svg/svg-color.cpp index 58f206422..c523c80e0 100644 --- a/src/svg/svg-color.cpp +++ b/src/svg/svg-color.cpp @@ -18,7 +18,13 @@ #include <math.h> #include <glib/gstrfuncs.h> #include <glib/ghash.h> -#include <glib/gprintf.h> + +#include <glib/gutils.h> +#if GLIB_CHECK_VERSION(2,9,0) +#else +# include <glib/gprintf.h> +#endif + #include "svg.h" struct SPSVGColor { |
