summaryrefslogtreecommitdiffabout
path: root/microkde
authorzautrix <zautrix>2004-07-08 11:51:20 (UTC)
committer zautrix <zautrix>2004-07-08 11:51:20 (UTC)
commit3729f356c14ecf49bf5484ab2662736e5aa5d53a (patch) (unidiff)
tree4eef0543b1ed9b22e9be6b2ef0dc6b0379ed6310 /microkde
parent3f84322a2da502f95be386372da9f75ed17df574 (diff)
downloadkdepimpi-3729f356c14ecf49bf5484ab2662736e5aa5d53a.zip
kdepimpi-3729f356c14ecf49bf5484ab2662736e5aa5d53a.tar.gz
kdepimpi-3729f356c14ecf49bf5484ab2662736e5aa5d53a.tar.bz2
Next fix for wintendo: resource config widget icon
Diffstat (limited to 'microkde') (more/less context) (ignore whitespace changes)
-rw-r--r--microkde/kresources/configwidget.cpp11
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
@@ -4,42 +4,53 @@
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
26using namespace KRES; 26using namespace KRES;
27 27
28#ifdef _WIN32_
29#include <kmessagebox.h>
30#include <qdir.h>
31#include <qapplication.h>
32#endif
33
28ConfigWidget::ConfigWidget( QWidget *parent, const char *name ) 34ConfigWidget::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
33void ConfigWidget::setInEditMode( bool ) 44void ConfigWidget::setInEditMode( bool )
34{ 45{
35} 46}
36 47
37void ConfigWidget::loadSettings( Resource * ) 48void ConfigWidget::loadSettings( Resource * )
38{ 49{
39} 50}
40 51
41void ConfigWidget::saveSettings( Resource * ) 52void ConfigWidget::saveSettings( Resource * )
42{ 53{
43} 54}
44 55
45//US #include "configwidget.moc" 56//US #include "configwidget.moc"