X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Fdebugconsole.h;h=c973f3251a6ce36ba0fe95647c5892d9f24a00ee;hb=HEAD;hp=c205092248e33e7c939b9d8a64900976bb20118d;hpb=04315f46a16fc3627218377071e008b6b9744992;p=quassel.git diff --git a/src/qtui/debugconsole.h b/src/qtui/debugconsole.h deleted file mode 100644 index c2050922..00000000 --- a/src/qtui/debugconsole.h +++ /dev/null @@ -1,48 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * - * devel@quassel-irc.org * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) version 3. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - ***************************************************************************/ - -#ifndef DEBUGCONSOLE_H -#define DEBUGCONSOLE_H - -#include "ui_debugconsole.h" - -class DebugConsole : public QDialog -{ - Q_OBJECT - -public: - DebugConsole(QWidget *parent = 0); - virtual ~DebugConsole(); - -public slots: - void scriptResult(QString result); - -signals: - void scriptRequest(QString script); - -private slots: - void on_evalButton_clicked(); - -private: - Ui::DebugConsole ui; -}; - - -#endif