summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/detail.h
Unidiff
Diffstat (limited to 'noncore/settings/sysinfo/detail.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/detail.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/noncore/settings/sysinfo/detail.h b/noncore/settings/sysinfo/detail.h
index 7ca9d45..71d3e3a 100644
--- a/noncore/settings/sysinfo/detail.h
+++ b/noncore/settings/sysinfo/detail.h
@@ -14,28 +14,26 @@
14** Foundation and appearing in the file LICENSE.GPL included in the 14** Foundation and appearing in the file LICENSE.GPL included in the
15** packaging of this file. 15** packaging of this file.
16** 16**
17** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 17** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
18** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 18** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19** 19**
20**********************************************************************/ 20**********************************************************************/
21 21
22#ifndef DETAIL_H 22#ifndef DETAIL_H
23#define DETAIL_H 23#define DETAIL_H
24 24
25#include <qwidget.h> 25#include <qwidget.h>
26#include <qcombo.h> 26
27#include <qtextview.h> 27class QTextView;
28#include <qpushbutton.h>
29#include <qlistview.h>
30 28
31class Detail : public QWidget 29class Detail : public QWidget
32{ 30{
33 Q_OBJECT 31 Q_OBJECT
34 32
35public: 33public:
36 Detail( QWidget * = 0x0, const char * = 0x0, WFlags = 0 ); 34 Detail( QWidget * = 0x0, const char * = 0x0, WFlags = 0 );
37 ~Detail(); 35 ~Detail();
38 36
39 QTextView* detailView; 37 QTextView* detailView;
40}; 38};
41 39