1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00
falkonOfficial/src/tools/widget.cpp
nowrep 9fb119fc95 Added non-blocking javascript alerts/confirms/prompts (with option to
block additional alerts on page)
fixed proper history restoring on restoring closed tabs
2011-05-22 10:47:03 +02:00

12 lines
145 B
C++

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