diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2012-01-12 01:59:22 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2012-01-12 01:59:22 +0000 |
| commit | 10f55ededa291836ef120c831eac52d698440fbb (patch) | |
| tree | f377c504dd3515c4983c255782c508494207ad9d /src/widgets/fill-style.cpp | |
| parent | A few GSEAL issues (diff) | |
| download | inkscape-10f55ededa291836ef120c831eac52d698440fbb.tar.gz inkscape-10f55ededa291836ef120c831eac52d698440fbb.zip | |
Initial C++ification of SPCanvas.
(bzr r10873)
Diffstat (limited to 'src/widgets/fill-style.cpp')
| -rw-r--r-- | src/widgets/fill-style.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/fill-style.cpp b/src/widgets/fill-style.cpp index 6f076b4c4..425ee1f5e 100644 --- a/src/widgets/fill-style.cpp +++ b/src/widgets/fill-style.cpp @@ -492,7 +492,7 @@ void FillNStroke::updateFromPaint() { if (kind == FILL) { // FIXME: fix for GTK breakage, see comment in SelectedStyle::on_opacity_changed; here it results in losing release events - sp_canvas_force_full_redraw_after_interruptions(sp_desktop_canvas(desktop), 0); + sp_desktop_canvas(desktop)->forceFullRedrawAfterInterruptions(0); } psel->setFlatColor( desktop, @@ -503,7 +503,7 @@ void FillNStroke::updateFromPaint() if (kind == FILL) { // resume interruptibility - sp_canvas_end_forced_full_redraws(sp_desktop_canvas(desktop)); + sp_desktop_canvas(desktop)->endForcedFullRedraws(); } // on release, toggle undo_label so that the next drag will not be lumped with this one |
