mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-13 10:32:11 +01:00
12 lines
145 B
C++
12 lines
145 B
C++
|
#include "widget.h"
|
||
|
|
||
|
Widget::Widget(QWidget *parent) :
|
||
|
QWidget(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Widget::slotResize(const QSize &size)
|
||
|
{
|
||
|
resize(size);
|
||
|
}
|