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
@@ -16,27 +16,38 @@
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{