summaryrefslogtreecommitdiff
path: root/noncore/multimedia
authorsimon <simon>2002-04-30 14:24:50 (UTC)
committer simon <simon>2002-04-30 14:24:50 (UTC)
commit3c1b87ffa621f872c72228733a078511e56d2daf (patch) (unidiff)
tree7f31bf8b03abbb30765d764c1271902a1f3ac584 /noncore/multimedia
parente4a316c10ee1a6a1514db1e3883d1e97d80ed356 (diff)
downloadopie-3c1b87ffa621f872c72228733a078511e56d2daf.zip
opie-3c1b87ffa621f872c72228733a078511e56d2daf.tar.gz
opie-3c1b87ffa621f872c72228733a078511e56d2daf.tar.bz2
- no default args in method impl
Diffstat (limited to 'noncore/multimedia') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/showimg/showimg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/showimg/showimg.cpp b/noncore/multimedia/showimg/showimg.cpp
index c56994d..7c43e11 100644
--- a/noncore/multimedia/showimg/showimg.cpp
+++ b/noncore/multimedia/showimg/showimg.cpp
@@ -40,13 +40,13 @@
40#include <qkeycode.h> 40#include <qkeycode.h>
41#include <qapplication.h> 41#include <qapplication.h>
42#include <qclipboard.h> 42#include <qclipboard.h>
43#include <qtimer.h> 43#include <qtimer.h>
44 44
45 45
46ImagePane::ImagePane( QWidget *parent=0 ) : QWidget( parent ) 46ImagePane::ImagePane( QWidget *parent ) : QWidget( parent )
47{ 47{
48 vb = new QVBoxLayout( this ); 48 vb = new QVBoxLayout( this );
49 49
50 image = new ImageWidget( this ); 50 image = new ImageWidget( this );
51 connect(image, SIGNAL( clicked() ), this, SLOT( imageClicked() )); 51 connect(image, SIGNAL( clicked() ), this, SLOT( imageClicked() ));
52 52