1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 10:12:10 +02:00
falkonOfficial/src/tools/widget.cpp

12 lines
145 B
C++
Raw Normal View History

#include "widget.h"
Widget::Widget(QWidget *parent) :
QWidget(parent)
{
}
void Widget::slotResize(const QSize &size)
{
resize(size);
}