diff options
Diffstat (limited to 'src/extension/internal/emf-inout.cpp')
| -rw-r--r-- | src/extension/internal/emf-inout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/internal/emf-inout.cpp b/src/extension/internal/emf-inout.cpp index 7baf84306..44625ac5d 100644 --- a/src/extension/internal/emf-inout.cpp +++ b/src/extension/internal/emf-inout.cpp @@ -582,7 +582,7 @@ uint32_t Emf::add_image(PEMF_CALLBACK_DATA d, void *pEmr, uint32_t cbBits, uint So the rotated name is EMFrotimage###_XXXXXX, where ### is the number of the referred to image, and XXXX is the rotation in radians x 1000000 and truncated. That is then stored in BASE64 as the "image". The corresponding SVG generated though is not for an image, but a reference to an image. - The name of the pattern MUST stil be EMFimage###_ref or output_style() will not be able to use it. + The name of the pattern MUST still be EMFimage###_ref or output_style() will not be able to use it. */ if(current_rotation(d) >= 0.00001 || current_rotation(d) <= -0.00001){ /* some rotation, allow a little rounding error around 0 degrees */ int tangle = round(current_rotation(d)*1000000.0); @@ -1456,7 +1456,7 @@ Emf::delete_object(PEMF_CALLBACK_DATA d, int index) d->emf_obj[index].type = 0; // We are keeping a copy of the EMR rather than just a structure. Currently that is not necessary as the entire // EMF is read in at once and is stored in a big malloc. However, in past versions it was handled -// reord by record, and we might need to do that again at some point in the future if we start running into EMF +// record by record, and we might need to do that again at some point in the future if we start running into EMF // files too big to fit into memory. if (d->emf_obj[index].lpEMFR) free(d->emf_obj[index].lpEMFR); |
