summaryrefslogtreecommitdiff
path: root/src/Fl_Image.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2003-08-04 19:20:50 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2003-08-04 19:20:50 +0000
commitaeaf3582cb233c858d3c4b7971437de5b24a2ab0 (patch)
treeff6b6889b5f0f4c695fdb9a66089de8d9e713de2 /src/Fl_Image.cxx
parentc99d122b45b3fb2435871cf352ad00642f01db68 (diff)
Fix typo...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3076 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Image.cxx')
-rw-r--r--src/Fl_Image.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Image.cxx b/src/Fl_Image.cxx
index b9e3f7c16..54b537247 100644
--- a/src/Fl_Image.cxx
+++ b/src/Fl_Image.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Image.cxx,v 1.5.2.3.2.30 2003/07/29 02:12:36 easysw Exp $"
+// "$Id: Fl_Image.cxx,v 1.5.2.3.2.31 2003/08/04 19:20:50 easysw Exp $"
//
// Image drawing code for the Fast Light Tool Kit (FLTK).
//
@@ -338,7 +338,7 @@ void Fl_RGB_Image::draw(int XP, int YP, int WP, int HP, int cx, int cy) {
// dst.left = X; dst.right = X+w();
// dst.top = Y; dst.bottom = Y+h();
src.left = cx; src.right = cx+W;
- src.top = cx; src.bottom = cy+H;
+ src.top = cy; src.bottom = cy+H;
dst.left = X; dst.right = X+W;
dst.top = Y; dst.bottom = Y+H;
RGBColor rgb;
@@ -397,5 +397,5 @@ void Fl_RGB_Image::label(Fl_Menu_Item* m) {
//
-// End of "$Id: Fl_Image.cxx,v 1.5.2.3.2.30 2003/07/29 02:12:36 easysw Exp $".
+// End of "$Id: Fl_Image.cxx,v 1.5.2.3.2.31 2003/08/04 19:20:50 easysw Exp $".
//