-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 | |||
@@ -20,19 +20,30 @@ | |||
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 | { |