mirror of
https://github.com/YACReader/yacreader
synced 2025-07-17 20:44:32 -04:00
GoTo dialogs: Restrict input values to existing pages
This commit is contained in:
@ -11,7 +11,7 @@
|
||||
GoToFlowWidget::GoToFlowWidget(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
mainLayout = new QVBoxLayout;
|
||||
mainLayout = new QVBoxLayout(this);
|
||||
mainLayout->setMargin(0);
|
||||
mainLayout->setSpacing(0);
|
||||
|
||||
@ -22,11 +22,7 @@ GoToFlowWidget::GoToFlowWidget(QWidget *parent)
|
||||
//toolBar->installEventFilter(this);
|
||||
}
|
||||
|
||||
GoToFlowWidget::~GoToFlowWidget()
|
||||
{
|
||||
delete toolBar;
|
||||
delete mainLayout;
|
||||
}
|
||||
GoToFlowWidget::~GoToFlowWidget() { }
|
||||
|
||||
void GoToFlowWidget::setPageNumber(int page)
|
||||
{
|
||||
|
Reference in New Issue
Block a user