diff options
| author | 2011-07-12 16:17:31 +0000 | |
|---|---|---|
| committer | 2011-07-12 16:17:31 +0000 | |
| commit | ebf9d99b94239a365b112d09e29f449ee5c5d62d (patch) | |
| tree | a75889ce1ede7087d0d8fa4c7429db958ef927ce /src/modules | |
| parent | trunk/: updated pt_BR translation (ticket #1159, thanks to Rafael_C_V) (diff) | |
| download | KVIrc-ebf9d99b94239a365b112d09e29f449ee5c5d62d.tar.gz KVIrc-ebf9d99b94239a365b112d09e29f449ee5c5d62d.tar.bz2 KVIrc-ebf9d99b94239a365b112d09e29f449ee5c5d62d.zip | |
$escape should not throw an error on empty strings (+ small compilation fix)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5897 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/objects/KvsObject_pixmap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/objects/KvsObject_pixmap.cpp b/src/modules/objects/KvsObject_pixmap.cpp index 65f091c50..9f858686a 100644 --- a/src/modules/objects/KvsObject_pixmap.cpp +++ b/src/modules/objects/KvsObject_pixmap.cpp @@ -315,8 +315,8 @@ KVSO_CLASS_FUNCTION(pixmap,pixel) c->error(__tr2qs_ctx("The pixmap is null","objects")); return false; } else if(m_currentType==Pixmap) { - qDebug("mpimage %i",m_pImage); - qDebug("pixmap %i %i",m_pPixmap->width(),m_pPixmap->height()); +// qDebug("mpimage %i",m_pImage); +// qDebug("pixmap %i %i",m_pPixmap->width(),m_pPixmap->height()); if(m_pImage) delete m_pImage; else m_pImage = new QImage(); |
