summaryrefslogtreecommitdiffabout
path: root/microkde/kresources/configwidget.cpp
Unidiff
Diffstat (limited to 'microkde/kresources/configwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kresources/configwidget.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/microkde/kresources/configwidget.cpp b/microkde/kresources/configwidget.cpp
new file mode 100644
index 0000000..c42cbd4
--- a/dev/null
+++ b/microkde/kresources/configwidget.cpp
@@ -0,0 +1,45 @@
1/*
2 This file is part of libkresources.
3
4 Copyright (c) 2002 Tobias Koenig <tokoe@kde.org>
5 Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org>
6 Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org>
7
8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public
10 License as published by the Free Software Foundation; either
11 version 2 of the License, or (at your option) any later version.
12
13 This library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Library General Public License for more details.
17
18 You should have received a copy of the GNU Library General Public License
19 along with this library; see the file COPYING.LIB. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.
22*/
23
24#include "configwidget.h"
25
26using namespace KRES;
27
28ConfigWidget::ConfigWidget( QWidget *parent, const char *name )
29 : QWidget( parent, name )
30{
31}
32
33void ConfigWidget::setInEditMode( bool )
34{
35}
36
37void ConfigWidget::loadSettings( Resource * )
38{
39}
40
41void ConfigWidget::saveSettings( Resource * )
42{
43}
44
45//US #include "configwidget.moc"