author | alwin <alwin> | 2004-11-01 10:28:21 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-11-01 10:28:21 (UTC) |
commit | b3153506a1be76a386f23a3af44f84042d148111 (patch) (side-by-side diff) | |
tree | e484982d1a32cfea1ffc80a76655820ae8cba01c | |
parent | d69955ef9cddc3acc37b9dc96945cd4bae56eed5 (diff) | |
download | opie-b3153506a1be76a386f23a3af44f84042d148111.zip opie-b3153506a1be76a386f23a3af44f84042d148111.tar.gz opie-b3153506a1be76a386f23a3af44f84042d148111.tar.bz2 |
removed some useless debug code
-rw-r--r-- | libopie2/opiemm/oimagescrollview.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libopie2/opiemm/oimagescrollview.cpp b/libopie2/opiemm/oimagescrollview.cpp index 72248c1..56be10b 100644 --- a/libopie2/opiemm/oimagescrollview.cpp +++ b/libopie2/opiemm/oimagescrollview.cpp @@ -440,49 +440,48 @@ void OImageScrollView::drawContents(QPainter * p, int clipx, int clipy, int clip return; } int w = clipw; int h = cliph; int x = clipx; int y = clipy; bool erase = false; if (w>_pdata.width()) { w = _pdata.width()-x; erase=true; } if (h>_pdata.height()) { h = _pdata.height()-y; erase=true; } if (!erase && (clipy+cliph>_pdata.height()||clipx+clipw>_pdata.width())) { erase = true; } if (erase||_original_data.hasAlphaBuffer()) { p->fillRect(clipx,clipy,clipw,cliph, backgroundColor()); } if (w>0 && h>0&&x<_pdata.width()&&y<_pdata.height()) { - odebug << "Drawing pixmap" << oendl; p->drawPixmap(clipx,clipy,_pdata,x,y,w,h); } } /* using the real geometry points and not the translated points is wanted! */ void OImageScrollView::viewportMouseMoveEvent(QMouseEvent* e) { int mx, my; mx = e->x(); my = e->y(); if (_mouseStartPosX!=-1 && _mouseStartPosY!=-1) { int diffx = _mouseStartPosX-mx; int diffy = _mouseStartPosY-my; scrollBy(diffx,diffy); } _mouseStartPosX=mx; _mouseStartPosY=my; } void OImageScrollView::contentsMousePressEvent ( QMouseEvent * e) { odebug << " X and Y " << e->x() << " " << e->y() << oendl; /* this marks the beginning of a possible mouse move. Due internal reasons of QT the geometry values here may real differ from that set in MoveEvent (I don't know |