Files
Sourcetrail/src/lib_gui/qt/window/QtAboutLicense.h
T
Andreas Stallinger 37ead804bf src: clazy compiler warnings
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
2017-08-10 09:45:55 +02:00

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