summaryrefslogtreecommitdiffstats
path: root/kdat/FileInfoWidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
commitaa3a1ca934bc541bddd3fa136a85f106f7da266e (patch)
tree9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/FileInfoWidget.h
parentb10cf7066791a2f362495890cd50c984e8025412 (diff)
downloadtdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz
tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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