mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-31 21:45:35 +00:00
22 lines
522 B
C++
22 lines
522 B
C++
|
#include "subcategory.hpp"
|
||
|
|
||
|
#include <QGridLayout>
|
||
|
|
||
|
namespace CSMPrefs
|
||
|
{
|
||
|
class Category;
|
||
|
|
||
|
Subcategory::Subcategory(Category* parent, QMutex* mutex, const QString& label)
|
||
|
: Setting(parent, mutex, "", label)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SettingWidgets Subcategory::makeWidgets(QWidget* /*parent*/)
|
||
|
{
|
||
|
QGridLayout* const layout = new QGridLayout();
|
||
|
layout->setSizeConstraint(QLayout::SetMinAndMaxSize);
|
||
|
|
||
|
return SettingWidgets{ .mLabel = nullptr, .mInput = nullptr, .mLayout = layout };
|
||
|
}
|
||
|
}
|