author | zautrix <zautrix> | 2004-08-08 13:35:34 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-08 13:35:34 (UTC) |
commit | 957c13e21844ca75e337fc1c864554dd2240fc78 (patch) (side-by-side diff) | |
tree | 4e2a2a42116639786d2ff00829f3ad26ab0661b3 /libkdepim/kcmconfigs | |
parent | 75138e84a2271f8929478853151a6ed4a73fb2cc (diff) | |
download | kdepimpi-957c13e21844ca75e337fc1c864554dd2240fc78.zip kdepimpi-957c13e21844ca75e337fc1c864554dd2240fc78.tar.gz kdepimpi-957c13e21844ca75e337fc1c864554dd2240fc78.tar.bz2 |
Fixed win compile problem
-rw-r--r-- | libkdepim/kcmconfigs/kcmkdepimconfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libkdepim/kcmconfigs/kcmkdepimconfig.cpp b/libkdepim/kcmconfigs/kcmkdepimconfig.cpp index 77a294a..830d5d2 100644 --- a/libkdepim/kcmconfigs/kcmkdepimconfig.cpp +++ b/libkdepim/kcmconfigs/kcmkdepimconfig.cpp @@ -11,67 +11,67 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. As a special exception, permission is given to link this program with any edition of Qt, and distribute the resulting executable, without including the source code for Qt in the source distribution. */ /* Enhanced Version of the file for platform independent KDE tools. Copyright (c) 2004 Ulf Schenk $Id$ */ #include <qlayout.h> #include <kdebug.h> //#include <klocale.h> //#include <stdlib.h> #include "kdepimconfigwidget.h" #include "kcmkdepimconfig.h" #include "kprefs.h" #include "kpimprefs.h" - +#ifndef _WIN32_ extern "C" { KCModule *create_kabconfig( QWidget *parent, const char * ) { return new KCMKdePimConfig( parent, "kcmkdepimconfig" ); } } - +#endif KCMKdePimConfig::KCMKdePimConfig( QWidget *parent, const char *name ) : KCModule( parent, name ) { //abort(); QVBoxLayout *layout = new QVBoxLayout( this ); mConfigWidget = new KDEPIMConfigWidget( this, "mConfigWidget" ); layout->addWidget( mConfigWidget ); layout->setSpacing( 0 ); layout->setMargin( 0 ); connect( mConfigWidget, SIGNAL( changed( bool ) ), SIGNAL( changed( bool ) ) ); } void KCMKdePimConfig::load(KPrefs* prefs) { mConfigWidget->restoreSettings((KPimPrefs*)prefs); } void KCMKdePimConfig::save(KPrefs* prefs) { mConfigWidget->saveSettings((KPimPrefs*)prefs); } void KCMKdePimConfig::defaults(KPrefs* prefs) { mConfigWidget->defaults((KPimPrefs*)prefs); } |