qt5base-lts/tests/manual/qtabbar/tabbarform.h
Allan Sandfeld Jensen 564b59d903 Another round of replacing 0 with nullptr
This time based on grepping to also include documentation, tests and
examples previously missed by the automatic tool.

Change-Id: Ied1703f4bcc470fbc275f759ed5b7c588a5c4e9f
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
2020-10-07 23:02:47 +02:00

23 lines
307 B
C++

#ifndef TABBARFORM_H
#define TABBARFORM_H
#include <QWidget>
#include "ui_tabbarform.h"
namespace Ui {
class TabBarForm;
}
class TabBarForm : public QWidget
{
Q_OBJECT
public:
explicit TabBarForm(QWidget *parent = nullptr);
~TabBarForm();
Ui::TabBarForm *ui;
};
#endif // TABBARFORM_H