aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-10 16:15:43 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-10 16:15:43 +0000
commitcfcf4c9f8cdfa495859d18d9026c5e29b04ddb8d (patch)
treebc9adc5283e515d21adf7bc408fe60a2032633a1 /pbx
parentd3421c995aaae1961dcd2f053a235afe374b36e1 (diff)
Merged revisions 97734 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r97734 | russell | 2008-01-10 10:10:09 -0600 (Thu, 10 Jan 2008) | 4 lines 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/trunk@97745 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();
-}
-