X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fdebugconsole.h;fp=src%2Fqtui%2Fdebugconsole.h;h=0000000000000000000000000000000000000000;hp=c973f3251a6ce36ba0fe95647c5892d9f24a00ee;hb=42d328e94a3bed8e6b0a32e7a234281e6d184325;hpb=af9f6788daf6910d3727bf5a85cd88ebf0b93ba4 diff --git a/src/qtui/debugconsole.h b/src/qtui/debugconsole.h deleted file mode 100644 index c973f325..00000000 --- a/src/qtui/debugconsole.h +++ /dev/null @@ -1,46 +0,0 @@ -/*************************************************************************** - * Copyright (C) 2005-2019 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 = nullptr); - -public slots: - void scriptResult(QString result); - -signals: - void scriptRequest(QString script); - -private slots: - void on_evalButton_clicked(); - -private: - Ui::DebugConsole ui; -}; - -#endif