mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 06:55:54 -04:00

- 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;
|
|
}
|