mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
9fb119fc95
block additional alerts on page) fixed proper history restoring on restoring closed tabs
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);
|
|
}
|