mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-06 15:42:32 -06:00
Remove generated include from headers
Not only fixes compilation with CMake 3.8 (without messing with include paths) but makes sources cleaner.
This commit is contained in:
@@ -32,12 +32,19 @@
|
||||
#ifndef PLUGINSELECTDLG_H
|
||||
#define PLUGINSELECTDLG_H
|
||||
|
||||
#include "ui_pluginselectdlg.h"
|
||||
#include <QDialog>
|
||||
|
||||
class QDropEvent;
|
||||
class QTreeWidgetItem;
|
||||
|
||||
class SearchEngine;
|
||||
|
||||
class PluginSelectDlg: public QDialog, private Ui::PluginSelectDlg
|
||||
namespace Ui
|
||||
{
|
||||
class PluginSelectDlg;
|
||||
}
|
||||
|
||||
class PluginSelectDlg: public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -82,6 +89,7 @@ private:
|
||||
void startAsyncOp();
|
||||
void finishAsyncOp();
|
||||
|
||||
Ui::PluginSelectDlg *m_ui;
|
||||
SearchEngine *m_pluginManager;
|
||||
int m_asyncOps;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user