[Lprof-devel] lprof/src/lprofqt imageitem.cpp,1.4.2.2,1.4.2.3
Brought to you by:
hvengel
From: Amit K. <ami...@us...> - 2009-06-17 02:59:45
|
Update of /cvsroot/lprof/lprof/src/lprofqt In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10644 Modified Files: Tag: GSoC-2009 imageitem.cpp Log Message: I just added following line at the end of ImageItem::reload function in file imageItem.cpp if (lProof) canvas -> addPixmap(proof); else canvas -> addPixmap(pixmap); Index: imageitem.cpp =================================================================== RCS file: /cvsroot/lprof/lprof/src/lprofqt/imageitem.cpp,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -d -r1.4.2.2 -r1.4.2.3 *** imageitem.cpp 16 Jun 2009 07:26:25 -0000 1.4.2.2 --- imageitem.cpp 17 Jun 2009 02:59:42 -0000 1.4.2.3 *************** *** 290,293 **** --- 290,299 ---- setZValue(5); show(); + + if (lProof) + canvas -> addPixmap(proof); + else + canvas -> addPixmap(pixmap); + // qDebug("ImageItem::Reload Done"); } |