diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-08-27 15:27:37 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-08-27 15:35:38 +0300 |
commit | a7465aa35b4efd3bfc4bbd9be4d1572d25a05bb2 (patch) | |
tree | 9dfa5112b52705ae4f0e04f1e43b0307a7806f5a /src/mainwindow/taskmanager.h | |
parent | Add CMakePresets.json (diff) | |
download | rekonq-a7465aa35b4efd3bfc4bbd9be4d1572d25a05bb2.tar.xz |
Rename rView to RekonqView
- move rview.hpp to include/
- move src/mainwindow/* to src/
Diffstat (limited to 'src/mainwindow/taskmanager.h')
-rw-r--r-- | src/mainwindow/taskmanager.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/mainwindow/taskmanager.h b/src/mainwindow/taskmanager.h deleted file mode 100644 index 073464b9..00000000 --- a/src/mainwindow/taskmanager.h +++ /dev/null @@ -1,31 +0,0 @@ -/* ============================================================ - * The rekonq project - * ============================================================ - * SPDX-License-Identifier: GPL-3.0-only - * Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net> - * ============================================================ - * Description: Task Manager - * ============================================================ */ - -#pragma once - -#include <QDialog> - -namespace Ui { -class TaskManager; -} - -class QListWidgetItem; -class TaskManager : public QDialog { - Q_OBJECT - -public: - explicit TaskManager(QWidget *parent = nullptr); - ~TaskManager() override; - -private slots: - void showPluginDetails(QListWidgetItem *item); - -private: - Ui::TaskManager *ui; -}; |