mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:19:56 +00:00
cfcfb17320
- move SizeHintWidget out to separate files - remove redundant logic in view.cpp - remove sizehint from dialogue subview - add tooltip hints in user preferences
17 lines
301 B
C++
17 lines
301 B
C++
#include "sizehint.hpp"
|
|
|
|
CSVDoc::SizeHintWidget::SizeHintWidget(QWidget *parent) : QWidget(parent)
|
|
{}
|
|
|
|
CSVDoc::SizeHintWidget::~SizeHintWidget()
|
|
{}
|
|
|
|
QSize CSVDoc::SizeHintWidget::sizeHint() const
|
|
{
|
|
return mSize;
|
|
}
|
|
|
|
void CSVDoc::SizeHintWidget::setSizeHint(const QSize &size)
|
|
{
|
|
mSize = size;
|
|
}
|