rewrite ui (refactoring, simplification, improvement of user expierence)

This commit is contained in:
arcan1s
2015-03-11 07:19:20 +03:00
parent b90f441fde
commit 275d71d75f
24 changed files with 2715 additions and 2152 deletions

View File

@ -20,10 +20,10 @@
#include <QLineEdit>
#include "mainwindow.h"
#include "wifimenuwidget.h"
PasswdWidget::PasswdWidget(MainWindow *wid)
PasswdWidget::PasswdWidget(WiFiMenuWidget *wid)
: QWidget(wid),
parent(wid),
ui(new Ui::PasswdWidget)
@ -79,7 +79,7 @@ void PasswdWidget::setPassword(const bool mode)
void PasswdWidget::cancel()
{
hide();
parent->updateTabs(2);
parent->update();
this->~PasswdWidget();
}