aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/objects/class_pixmap.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2009-09-02 17:14:59 +0000
committerGravatar Fabio Bas2009-09-02 17:14:59 +0000
commitb1c5a9cbd8a51fe98ec0e44d9f97788c81518a37 (patch)
tree9bb2e7591dadf0841c3acf2582755762aee2350d /src/modules/objects/class_pixmap.cpp
parentmore compilation denoising (diff)
downloadKVIrc-b1c5a9cbd8a51fe98ec0e44d9f97788c81518a37.tar.gz
KVIrc-b1c5a9cbd8a51fe98ec0e44d9f97788c81518a37.tar.bz2
KVIrc-b1c5a9cbd8a51fe98ec0e44d9f97788c81518a37.zip
even moar compilation denoising
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3469 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_pixmap.cpp')
-rw-r--r--src/modules/objects/class_pixmap.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/objects/class_pixmap.cpp b/src/modules/objects/class_pixmap.cpp
index 8f8e17a0a..827ca14db 100644
--- a/src/modules/objects/class_pixmap.cpp
+++ b/src/modules/objects/class_pixmap.cpp
@@ -201,14 +201,18 @@ KVSO_CLASS_FUNCTION(pixmap,loadAnimation)
KVSO_CLASS_FUNCTION(pixmap,startAnimation)
{
+ Q_UNUSED(c);
if (m_pAnimatedPixmap) m_pAnimatedPixmap->start();
return true;
}
+
KVSO_CLASS_FUNCTION(pixmap,stopAnimation)
{
+ Q_UNUSED(c);
if (m_pAnimatedPixmap) m_pAnimatedPixmap->stop();
return true;
}
+
KVSO_CLASS_FUNCTION(pixmap,load)
{
QString szFile;