Remove camel-case, a-la mapnik/mapnik#470da20d53b1a837af527568868132b3510c77b4
This commit is contained in:
parent
a113f11bae
commit
bf354eeded
2 changed files with 2 additions and 2 deletions
|
@ -88,14 +88,14 @@ void handle_png_options(std::string const& type,
|
|||
{
|
||||
if (!val || !mapnik::util::string2int(*val, opts.iq_speed) || opts.iq_speed < 1 || opts.iq_speed > 10)
|
||||
{
|
||||
throw ImageWriterException("invalid iq speed parameter: " + to_string(val));
|
||||
throw image_writer_exception("invalid iq speed parameter: " + to_string(val));
|
||||
}
|
||||
}
|
||||
else if (key == "iqd")
|
||||
{
|
||||
if (!val || !mapnik::util::string2double(*val, opts.iq_dither) || opts.iq_dither < 0 || opts.iq_dither > 1)
|
||||
{
|
||||
throw ImageWriterException("invalid iq dithering parameter: " + to_string(val));
|
||||
throw image_writer_exception("invalid iq dithering parameter: " + to_string(val));
|
||||
}
|
||||
}
|
||||
else if (key == "e" && val && *val == "miniz")
|
||||
|
|
0
src/svg/svg_parser.os-771c8135
Normal file
0
src/svg/svg_parser.os-771c8135
Normal file
Loading…
Reference in a new issue