-rw-r--r-- | microkde/kresources/configwidget.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/microkde/kresources/configwidget.cpp b/microkde/kresources/configwidget.cpp index c42cbd4..050ea76 100644 --- a/microkde/kresources/configwidget.cpp +++ b/microkde/kresources/configwidget.cpp | |||
@@ -1,45 +1,56 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkresources. | 2 | This file is part of libkresources. |
3 | 3 | ||
4 | Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> | 4 | Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> |
5 | Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org> | 5 | Copyright (c) 2002 Jan-Pascal van Best <janpascal@vanbest.org> |
6 | Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> | 6 | Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> |
7 | 7 | ||
8 | This library is free software; you can redistribute it and/or | 8 | This library is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU Library General Public | 9 | modify it under the terms of the GNU Library General Public |
10 | License as published by the Free Software Foundation; either | 10 | License as published by the Free Software Foundation; either |
11 | version 2 of the License, or (at your option) any later version. | 11 | version 2 of the License, or (at your option) any later version. |
12 | 12 | ||
13 | This library is distributed in the hope that it will be useful, | 13 | This library is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 | Library General Public License for more details. | 16 | Library General Public License for more details. |
17 | 17 | ||
18 | You should have received a copy of the GNU Library General Public License | 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 | 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, | 20 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
21 | Boston, MA 02111-1307, USA. | 21 | Boston, MA 02111-1307, USA. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "configwidget.h" | 24 | #include "configwidget.h" |
25 | 25 | ||
26 | using namespace KRES; | 26 | using namespace KRES; |
27 | 27 | ||
28 | #ifdef _WIN32_ | ||
29 | #include <kmessagebox.h> | ||
30 | #include <qdir.h> | ||
31 | #include <qapplication.h> | ||
32 | #endif | ||
33 | |||
28 | ConfigWidget::ConfigWidget( QWidget *parent, const char *name ) | 34 | ConfigWidget::ConfigWidget( QWidget *parent, const char *name ) |
29 | : QWidget( parent, name ) | 35 | : QWidget( parent, name ) |
30 | { | 36 | { |
37 | #ifdef _WIN32_ | ||
38 | QString fileName ; | ||
39 | fileName = qApp->applicationDirPath () + "/kdepim/kaddressbook/icons22/"; | ||
40 | KGlobal::iconLoader()->setIconPath(QDir::convertSeparators(fileName)); | ||
41 | #endif | ||
31 | } | 42 | } |
32 | 43 | ||
33 | void ConfigWidget::setInEditMode( bool ) | 44 | void ConfigWidget::setInEditMode( bool ) |
34 | { | 45 | { |
35 | } | 46 | } |
36 | 47 | ||
37 | void ConfigWidget::loadSettings( Resource * ) | 48 | void ConfigWidget::loadSettings( Resource * ) |
38 | { | 49 | { |
39 | } | 50 | } |
40 | 51 | ||
41 | void ConfigWidget::saveSettings( Resource * ) | 52 | void ConfigWidget::saveSettings( Resource * ) |
42 | { | 53 | { |
43 | } | 54 | } |
44 | 55 | ||
45 | //US #include "configwidget.moc" | 56 | //US #include "configwidget.moc" |