aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-10 16:10:09 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-10 16:10:09 +0000
commitbc283498259421c2ba995ab45c4207f35ef95d9c (patch)
tree6d806b31db2a18cea2e9c771aae331c0c1e52af9 /pbx
parent56b4420d6402fad8c65e3531f4bc255a1adcd33f (diff)
Remove pbx_kdeconsole from the tree. It hasn't worked in ages, and nobody has
complained. (closes issue #11706, reported by caio1982) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@97734 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_kdeconsole.cc66
1 files changed, 0 insertions, 66 deletions
diff --git a/pbx/pbx_kdeconsole.cc b/pbx/pbx_kdeconsole.cc
deleted file mode 100644
index 4a9af64d3..000000000
--- a/pbx/pbx_kdeconsole.cc
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Asterisk -- A telephony toolkit for Linux.
- *
- * KDE Console monitor -- Class implmementation
- *
- * Copyright (C) 1999, Mark Spencer
- *
- * Mark Spencer <markster@linux-support.net>
- *
- * This program is free software, distributed under the terms of
- * the GNU General Public License
- */
-
-/*** MODULEINFO
- <depend>qt</depend>
- <defaultenabled>no</defaultenabled>
- ***/
-
-#include "pbx_kdeconsole.moc"
-
-KAsteriskConsole::KAsteriskConsole() : KTMainWindow()
-{
- QVBoxLayout *box;
- QFrame *f;
-
- f = new QFrame(this);
-
- setGeometry(100,100,600,400);
- /* Menus */
- file = new QPopupMenu();
- file->insertItem("&Exit", this, SLOT(slotExit()));
-
- help = kapp->getHelpMenu(TRUE, "KDE Asterisk Console\nby Mark Spencer");
-
- setCaption("Asterisk Console");
-
- /* Box */
- box = new QVBoxLayout(f, 20, 5);
-
- /* Menu bar creation */
- menu = new KMenuBar(this);
- menu->insertItem("&File", file);
- menu->insertItem("&Help", help);
- /* Verbose stuff */
- verbose = new QListBox(f, "verbose");
- /* Exit button */
- btnExit = new QPushButton("Exit", f, "exit");
- btnExit->show();
- connect(btnExit, SIGNAL(clicked()), this, SLOT(slotExit()));
-
- box->addWidget(verbose, 1);
- box->addWidget(btnExit, 0);
- setView(f, TRUE);
- statusBar()->message("Ready", 2000);
-}
-
-void KAsteriskConsole::slotExit()
-{
- close();
-}
-
-void KAsteriskConsole::closeEvent(QCloseEvent *)
-{
- kapp->quit();
-}
-