diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2007-09-15 18:57:43 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2007-09-15 18:57:43 +0000 |
| commit | bc1fdc1d78d90bd54532829447a8f0f77b60ac25 (patch) | |
| tree | c84f7e4b82f0f7db374dc629d6c81a3f0bda2f64 /src | |
| parent | Refactoring SPColor to C++ and removing legacy CMYK implementation (diff) | |
| download | inkscape-bc1fdc1d78d90bd54532829447a8f0f77b60ac25.tar.gz inkscape-bc1fdc1d78d90bd54532829447a8f0f77b60ac25.zip | |
fix typo: .( -> .set(
(bzr r3754)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/internal/emf-win32-inout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/internal/emf-win32-inout.cpp b/src/extension/internal/emf-win32-inout.cpp index ecc12b23a..6e008b754 100644 --- a/src/extension/internal/emf-win32-inout.cpp +++ b/src/extension/internal/emf-win32-inout.cpp @@ -420,7 +420,7 @@ select_extpen(PEMF_CALLBACK_DATA d, int index) g = SP_COLOR_U_TO_F( GetGValue(pEmr->elp.elpColor) ); b = SP_COLOR_U_TO_F( GetBValue(pEmr->elp.elpColor) ); - d->style.stroke.value.color.( r, g, b ); + d->style.stroke.value.color.set( r, g, b ); d->stroke_set = true; } @@ -442,7 +442,7 @@ select_brush(PEMF_CALLBACK_DATA d, int index) r = SP_COLOR_U_TO_F( GetRValue(pEmr->lb.lbColor) ); g = SP_COLOR_U_TO_F( GetGValue(pEmr->lb.lbColor) ); b = SP_COLOR_U_TO_F( GetBValue(pEmr->lb.lbColor) ); - d->style.fill.value.color.( r, g, b ); + d->style.fill.value.color.set( r, g, b ); } d->fill_set = true; |
