summaryrefslogtreecommitdiffstats
path: root/kresources/caldav/plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/caldav/plugin.cpp')
-rw-r--r--kresources/caldav/plugin.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/kresources/caldav/plugin.cpp b/kresources/caldav/plugin.cpp
deleted file mode 100644
index 9ce6d60f6..000000000
--- a/kresources/caldav/plugin.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*=========================================================================
-| KCalDAV
-|--------------------------------------------------------------------------
-| (c) 2010 Timothy Pearson
-| (c) 2009 Kumaran Santhanam (initial KDE4 version)
-|
-| This project is released under the GNU General Public License.
-| Please see the file COPYING for more details.
-|--------------------------------------------------------------------------
-| CalDAV resource factory.
- ========================================================================*/
-
-/*=========================================================================
-| INCLUDES
- ========================================================================*/
-
-#include "resource.h"
-#include "config.h"
-#include "export.h"
-
-#include <kglobal.h>
-#include <klocale.h>
-
-/*=========================================================================
-| NAMESPACE
- ========================================================================*/
-
-using namespace KCal;
-
-/*=========================================================================
-| CLASS
- ========================================================================*/
-
-// Creates the resource factory.
-//EXPORT_KRESOURCES_PLUGIN2( ResourceCalDav, ResourceCalDavConfig, "libkcal", "kres_caldav" )
-
-typedef KRES::PluginFactory<ResourceCalDav, ResourceCalDavConfig> CalDavFactory;
-
-extern "C"
-{
- void *init_kcal_caldav()
- {
- TDEGlobal::locale()->insertCatalogue( "libkcal" );
- TDEGlobal::locale()->insertCatalogue( "kres_caldav" );
- return new CalDavFactory;
- }
-}
-
-// EOF ========================================================================