summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/sysloginfo.h
Unidiff
Diffstat (limited to 'noncore/settings/sysinfo/sysloginfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/sysloginfo.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/noncore/settings/sysinfo/sysloginfo.h b/noncore/settings/sysinfo/sysloginfo.h
index 7bf8d17..f9e522a 100644
--- a/noncore/settings/sysinfo/sysloginfo.h
+++ b/noncore/settings/sysinfo/sysloginfo.h
@@ -1,42 +1,40 @@
1/********************************************************************** 1/**********************************************************************
2** SyslogInfo 2** SyslogInfo
3** 3**
4** Display Syslog information 4** Display Syslog information
5** 5**
6** Copyright (C) 2004, Michael Lauer 6** Copyright (C) 2004-2005, Michael 'Mickey' Lauer <mickey@Vanille.de>
7** mickey@tm.informatik.uni-frankfurt.de
8** http://www.Vanille.de
9** 7**
10** This file may be distributed and/or modified under the terms of the 8** This file may be distributed and/or modified under the terms of the
11** GNU General Public License version 2 as published by the Free Software 9** GNU General Public License version 2 as published by the Free Software
12** Foundation and appearing in the file LICENSE.GPL included in the 10** Foundation and appearing in the file LICENSE.GPL included in the
13** packaging of this file. 11** packaging of this file.
14** 12**
15** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 13** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 14** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17** 15**
18**********************************************************************/ 16**********************************************************************/
19 17
20#ifndef SYSLOGINFO_H 18#ifndef SYSLOGINFO_H
21#define SYSLOGINFO_H 19#define SYSLOGINFO_H
22 20
23#include <qwidget.h> 21#include <qwidget.h>
24 22
25class QTextView; 23class QTextView;
26 24
27class SyslogInfo : public QWidget 25class SyslogInfo : public QWidget
28{ 26{
29 Q_OBJECT 27 Q_OBJECT
30public: 28public:
31 SyslogInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); 29 SyslogInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
32 ~SyslogInfo(); 30 ~SyslogInfo();
33 31
34private: 32private:
35 QTextView* syslogview; 33 QTextView* syslogview;
36 int fd; 34 int fd;
37 35
38private slots: 36private slots:
39 void updateData(); 37 void updateData();
40}; 38};
41 39
42#endif 40#endif