mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
a29ae07957
This got broken by e07d8f3066
. Creating QGridLayout with parent and setting it
later has not the same effect.
19 lines
416 B
C++
19 lines
416 B
C++
#include "subcategory.hpp"
|
|
|
|
#include <QGridLayout>
|
|
|
|
namespace CSMPrefs
|
|
{
|
|
class Category;
|
|
|
|
Subcategory::Subcategory(Category* parent, QMutex* mutex, const QString& label, Settings::Index& index)
|
|
: Setting(parent, mutex, "", label, index)
|
|
{
|
|
}
|
|
|
|
SettingWidgets Subcategory::makeWidgets(QWidget* /*parent*/)
|
|
{
|
|
return SettingWidgets{ .mLabel = nullptr, .mInput = nullptr };
|
|
}
|
|
}
|