diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-06-26 15:30:55 +0000 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-06-26 15:30:55 +0000 |
commit | d56d643d412e06ff1e5239f8ebbd96f716b416bd (patch) | |
tree | a9a6977f807b4f67862d695528087d6bf17c2816 /libdimensionxx | |
parent | afd221bada70a5bcf0a59faefc5cd390538e33d9 (diff) | |
download | dimension-d56d643d412e06ff1e5239f8ebbd96f716b416bd.tar.xz |
Fix png.cpp typos.
Diffstat (limited to 'libdimensionxx')
-rw-r--r-- | libdimensionxx/png.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdimensionxx/png.cpp b/libdimensionxx/png.cpp index d7081bd..9283105 100644 --- a/libdimensionxx/png.cpp +++ b/libdimensionxx/png.cpp @@ -108,13 +108,13 @@ namespace Dimension // Start the asynchronous task dmnsn_progress *progress - = dmnsn_png_write_canvas_async(canvas, cookie->file()); + = dmnsn_png_write_canvas_async(m_canvas, cookie->file()); if (!progress) { throw Dimension_Error("Starting background PNG write failed."); } // Return the Progress object - return Progress(progresss, persister); + return Progress(progress, persister); } // Read a PNG file in the background @@ -141,7 +141,7 @@ namespace Dimension } // Return the Progress object - return Progress(progresss, persister); + return Progress(progress, persister); } // Construct an input PNG_Canvas from a background task |