summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/imageinfoui.cpp
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/gui/imageinfoui.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/imageinfoui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/imageinfoui.cpp b/noncore/graphics/opie-eye/gui/imageinfoui.cpp
index 27a67a6..e70d6a6 100644
--- a/noncore/graphics/opie-eye/gui/imageinfoui.cpp
+++ b/noncore/graphics/opie-eye/gui/imageinfoui.cpp
@@ -147,25 +147,25 @@ imageinfo::~imageinfo()
147{ 147{
148 { 148 {
149 QCopEnvelope( "QPE/Application/opie-eye_slave", "refDown()" ); 149 QCopEnvelope( "QPE/Application/opie-eye_slave", "refDown()" );
150 } 150 }
151 if (m_viewManager) { 151 if (m_viewManager) {
152 delete m_viewManager; 152 delete m_viewManager;
153 } 153 }
154} 154}
155 155
156void imageinfo::slot_fullInfo(const QString&_path, const QString&_t) 156void imageinfo::slot_fullInfo(const QString&_path, const QString&_t)
157{ 157{
158 if (_path == currentFile) { 158 if (_path == currentFile) {
159 qDebug(_t); 159 odebug << _t << oendl;
160 QString t = _t; 160 QString t = _t;
161 t.replace(QRegExp("\n"),"<br>"); 161 t.replace(QRegExp("\n"),"<br>");
162 TextView1->setText(t); 162 TextView1->setText(t);
163 } 163 }
164} 164}
165 165
166void imageinfo::slotThumbNail(const QString&_path, const QPixmap&_pix) 166void imageinfo::slotThumbNail(const QString&_path, const QPixmap&_pix)
167{ 167{
168 if (_path == currentFile) { 168 if (_path == currentFile) {
169 if (_pix.width()>0) { 169 if (_pix.width()>0) {
170 PPixmapCache::self()->insertImage( _path, _pix, THUMBSIZE, THUMBSIZE ); 170 PPixmapCache::self()->insertImage( _path, _pix, THUMBSIZE, THUMBSIZE );
171 PixmapLabel1->setPixmap( _pix ); 171 PixmapLabel1->setPixmap( _pix );