aboutsummaryrefslogtreecommitdiff
path: root/gui/oprof_start_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/oprof_start_main.cpp')
-rw-r--r--gui/oprof_start_main.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/gui/oprof_start_main.cpp b/gui/oprof_start_main.cpp
deleted file mode 100644
index 44da5de..0000000
--- a/gui/oprof_start_main.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- * @file oprof_start_main.cpp
- * main routine for GUI start
- *
- * @remark Copyright 2002 OProfile authors
- * @remark Read the file COPYING
- *
- * @author Philippe Elie
- * @author John Levon
- */
-
-#include <qapplication.h>
-
-#include "oprof_start.h"
-
-int main(int argc, char* argv[])
-{
- QApplication a(argc, argv);
-
- oprof_start* dlg = new oprof_start();
-
- a.setMainWidget(dlg);
-
- dlg->show();
-
- return a.exec();
-}