summaryrefslogtreecommitdiffstats
path: root/kabc/frontend/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/frontend/main.cpp')
-rw-r--r--kabc/frontend/main.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/kabc/frontend/main.cpp b/kabc/frontend/main.cpp
deleted file mode 100644
index 0e941e017..000000000
--- a/kabc/frontend/main.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <tdeaboutdata.h>
-#include <tdeapplication.h>
-#include <kdebug.h>
-#include <tdelocale.h>
-#include <tdecmdlineargs.h>
-
-#include "mainWindow.h"
-
-int main( int argc, char ** argv )
-{
- TDEAboutData aboutData("testkabc",I18N_NOOP("TestKabc"),"0.1");
- TDECmdLineArgs::init(argc,argv,&aboutData);
-
- TDEApplication app;
-
- MainWindow *w = new MainWindow;
- w->show();
- app.connect( &app, TQT_SIGNAL( lastWindowClosed() ), &app, TQT_SLOT( quit() ) );
- return app.exec();
-}