]> icculus.org git repositories - duncan/yast2-qt4.git/blob - src/YQEmpty.cc
clicking packages work! so the package selector is now
[duncan/yast2-qt4.git] / src / YQEmpty.cc
1 /*---------------------------------------------------------------------\
2 |                                                                      |
3 |                      __   __    ____ _____ ____                      |
4 |                      \ \ / /_ _/ ___|_   _|___ \                     |
5 |                       \ V / _` \___ \ | |   __) |                    |
6 |                        | | (_| |___) || |  / __/                     |
7 |                        |_|\__,_|____/ |_| |_____|                    |
8 |                                                                      |
9 |                               core system                            |
10 |                                                        (C) SuSE GmbH |
11 \----------------------------------------------------------------------/
12
13   File:       YQEmpty.cc
14
15   Author:     Stefan Hundhammer <sh@suse.de>
16
17 /-*/
18
19
20 #include "YQEmpty.h"
21
22
23 YQEmpty::YQEmpty( YWidget * parent )
24     : QWidget( (QWidget *) parent->widgetRep() )
25     , YEmpty( parent )
26 {
27     setWidgetRep( this );
28 }
29
30
31 YQEmpty::~YQEmpty()
32 {
33     // NOP
34 }
35
36
37 void YQEmpty::setSize( int newWidth, int newHeight )
38 {
39     resize( newWidth, newHeight );
40 }
41
42
43 #include "YQEmpty.moc"