diff options
Diffstat (limited to 'kuickshow/src/mainwidget.cpp')
-rw-r--r-- | kuickshow/src/mainwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kuickshow/src/mainwidget.cpp b/kuickshow/src/mainwidget.cpp index caa6700c..47b3d837 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 *parent, + const char *name ) : TQWidget ( parent, name ) { - box = new FileView( startDir, true, (QDir::Dirs | QDir::Files), + box = new FileView( startDir, true, (TQDir::Dirs | TQDir::Files), this, "fileview" ); } @@ -36,7 +36,7 @@ MainWidget::~MainWidget() // for now, no layout managers -void MainWidget::resizeEvent( QResizeEvent * ) +void MainWidget::resizeEvent( TQResizeEvent * ) { box->resize( width(), height() ); } |