From 975c1bd0a5a9bd025f7fce1904d933b140ff6444 Mon Sep 17 00:00:00 2001
From: David Capello <davidcapello@gmail.com>
Date: Thu, 5 May 2016 15:25:19 -0300
Subject: [PATCH] Remove reference to the old raster::Dirty object

---
 src/app/ui/editor/tool_loop_impl.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/app/ui/editor/tool_loop_impl.cpp b/src/app/ui/editor/tool_loop_impl.cpp
index 084314924..6abc2518c 100644
--- a/src/app/ui/editor/tool_loop_impl.cpp
+++ b/src/app/ui/editor/tool_loop_impl.cpp
@@ -337,8 +337,7 @@ public:
         ExpandCelCanvas::NeedsSource |
         // If the tool is freehand-like, we can use the modified
         // region directly as undo information to save the modified
-        // pixels (it's faster than creating a Dirty object).
-        // See ExpandCelCanvas::commit() for details about this flag.
+        // pixels. See ExpandCelCanvas::commit() for details about this flag.
         (getController()->isFreehand() ?
          ExpandCelCanvas::UseModifiedRegionAsUndoInfo:
          ExpandCelCanvas::None)));