author | mickeyl <mickeyl> | 2002-12-12 10:53:44 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2002-12-12 10:53:44 (UTC) |
commit | 6c34d8a9165d46eb3d7d28c859e592d0aecbc92f (patch) (unidiff) | |
tree | fb6247d0c7d55a40d139b9f735c27c845bf39e29 | |
parent | 767365b49f2aa679afd388c1fd9384cc6a6df4ef (diff) | |
download | opie-6c34d8a9165d46eb3d7d28c859e592d0aecbc92f.zip opie-6c34d8a9165d46eb3d7d28c859e592d0aecbc92f.tar.gz opie-6c34d8a9165d46eb3d7d28c859e592d0aecbc92f.tar.bz2 |
Config Tab is shaping up
-rw-r--r-- | noncore/net/wellenreiter/gui/configwindow.cpp | 23 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/configwindow.h | 30 |
2 files changed, 53 insertions, 0 deletions
diff --git a/noncore/net/wellenreiter/gui/configwindow.cpp b/noncore/net/wellenreiter/gui/configwindow.cpp new file mode 100644 index 0000000..04e3457 --- a/dev/null +++ b/noncore/net/wellenreiter/gui/configwindow.cpp | |||
@@ -0,0 +1,23 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #include "configwindow.h" | ||
17 | |||
18 | WellenreiterConfigWindow::WellenreiterConfigWindow( QWidget * parent, const char * name, WFlags f ) | ||
19 | :WellenreiterConfigBase( parent, name, f ) | ||
20 | { | ||
21 | |||
22 | }; | ||
23 | |||
diff --git a/noncore/net/wellenreiter/gui/configwindow.h b/noncore/net/wellenreiter/gui/configwindow.h new file mode 100644 index 0000000..759d46d --- a/dev/null +++ b/noncore/net/wellenreiter/gui/configwindow.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #ifndef WELLENREITERCONFIGWINDOW_H | ||
17 | #define WELLENREITERCONFIGWINDOW_H | ||
18 | |||
19 | #include "configbase.h" | ||
20 | |||
21 | class WellenreiterConfigWindow : public WellenreiterConfigBase | ||
22 | { | ||
23 | |||
24 | public: | ||
25 | WellenreiterConfigWindow( QWidget * parent = 0, const char * name = "WellenreiterConfigWindow", WFlags f = 0 ); | ||
26 | |||
27 | }; | ||
28 | |||
29 | #endif | ||
30 | |||