-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 | |||
@@ -12,34 +12,45 @@ | |||
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" |