diff options
Diffstat (limited to 'kuickshow/src/mainwidget.cpp')
-rw-r--r-- | kuickshow/src/mainwidget.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kuickshow/src/mainwidget.cpp b/kuickshow/src/mainwidget.cpp index caa6700..b9e6357 100644 --- a/kuickshow/src/mainwidget.cpp +++ b/kuickshow/src/mainwidget.cpp @@ -21,10 +21,10 @@ #include "mainwidget.h" -MainWidget::MainWidget( QString startDir, QWidget *parent, - const char *name ) : QWidget ( parent, name ) +MainWidget::MainWidget( TQString startDir, TQWidget *tqparent, + const char *name ) : TQWidget ( tqparent, name ) { - box = new FileView( startDir, true, (QDir::Dirs | QDir::Files), + box = new FileView( startDir, true, (TQDir::Dirs | TQDir::Files), this, "fileview" ); } @@ -35,8 +35,8 @@ MainWidget::~MainWidget() } -// for now, no layout managers -void MainWidget::resizeEvent( QResizeEvent * ) +// for now, no tqlayout managers +void MainWidget::resizeEvent( TQResizeEvent * ) { box->resize( width(), height() ); } |