mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 13:48:05 -06:00
Fix compilation warnings in smtp.h (cgreco)
This commit is contained in:
28
src/executionlog.h
Normal file
28
src/executionlog.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef EXECUTIONLOG_H
|
||||
#define EXECUTIONLOG_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
namespace Ui {
|
||||
class ExecutionLog;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
class ExecutionLog : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ExecutionLog(QWidget *parent = 0);
|
||||
~ExecutionLog();
|
||||
|
||||
public slots:
|
||||
void addLogMessage(const QString &msg);
|
||||
void addBanMessage(const QString &msg);
|
||||
|
||||
private:
|
||||
Ui::ExecutionLog *ui;
|
||||
};
|
||||
|
||||
#endif // EXECUTIONLOG_H
|
||||
Reference in New Issue
Block a user