summaryrefslogtreecommitdiffstats
path: root/kdat/FileInfoWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/FileInfoWidget.h')
-rw-r--r--kdat/FileInfoWidget.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kdat/FileInfoWidget.h b/kdat/FileInfoWidget.h
index c763886..9b2d227 100644
--- a/kdat/FileInfoWidget.h
+++ b/kdat/FileInfoWidget.h
@@ -19,22 +19,22 @@
#ifndef _FileInfoWidget_h_
#define _FileInfoWidget_h_
-#include <qwidget.h>
+#include <tqwidget.h>
class QLabel;
/**
* @short Display information about a local file.
*/
-class FileInfoWidget : public QWidget {
+class FileInfoWidget : public TQWidget {
Q_OBJECT
- QLabel* _fileName;
- QLabel* _ctime;
- QLabel* _mtime;
- QLabel* _atime;
- QLabel* _size;
- QLabel* _owner;
- QLabel* _group;
+ TQLabel* _fileName;
+ TQLabel* _ctime;
+ TQLabel* _mtime;
+ TQLabel* _atime;
+ TQLabel* _size;
+ TQLabel* _owner;
+ TQLabel* _group;
public:
/**
* Create a new file info widget.
@@ -42,7 +42,7 @@ public:
* @param parent The parent widget.
* @param name The name of this widget.
*/
- FileInfoWidget( QWidget* parent = 0, const char* name = 0 );
+ FileInfoWidget( TQWidget* parent = 0, const char* name = 0 );
/**
* Destroy the file info widget.
@@ -52,7 +52,7 @@ public:
/**
* Display the information for the given file.
*/
- void setFile( const QString & name );
+ void setFile( const TQString & name );
};
#endif