get rid of most clazy warnings (https://github.com/KDE/clazy) * range loop use refs * qcolor ctor with ints * missing Q_OBJECT macro * use .constfirst instead of .first enabled ccache for unix systems for fasterr recompiling * if ccache is in path we use it now
21 lines
387 B
C++
21 lines
387 B
C++
#ifndef QT_ABOUT_LICENSE_H
|
|
#define QT_ABOUT_LICENSE_H
|
|
|
|
#include "qt/window/QtWindow.h"
|
|
|
|
class QtAboutLicense
|
|
: public QtWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QtAboutLicense(QWidget* parent = 0);
|
|
QSize sizeHint() const override;
|
|
|
|
protected:
|
|
// QtWindow implementation
|
|
virtual void populateWindow(QWidget* widget) override;
|
|
virtual void windowReady() override;
|
|
};
|
|
|
|
#endif // QT_ABOUT_LICENSE_H
|