mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +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
18 lines
301 B
C++
18 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;
|
|
}
|