diff options
| author | Manuel Schneider | 2014-05-06 14:37:44 +0200 |
|---|---|---|
| committer | Manuel Schneider | 2014-05-06 15:16:20 +0200 |
| commit | 35c3facc81cf10a2070cc5091e4e447ecc7416e3 (patch) | |
| tree | 0a29051637a37d419407fa266cb1d8234666f9d6 /src/server/mainwindow | |
| parent | Reduces button block time (diff) | |
| download | pvs2-35c3facc81cf10a2070cc5091e4e447ecc7416e3.tar.gz pvs2-35c3facc81cf10a2070cc5091e4e447ecc7416e3.tar.xz pvs2-35c3facc81cf10a2070cc5091e4e447ecc7416e3.zip | |
Changes the approach of Qt Gui initialization to the member pointer approach. This means multiple inheritance is avoided and the form is now a member pointer of the class. Immlicitely renamed some ui elements for clearification. Again changed unnecessary use of QDialog to QWidget.
Diffstat (limited to 'src/server/mainwindow')
| -rw-r--r-- | src/server/mainwindow/mainwindow.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/mainwindow/mainwindow.h b/src/server/mainwindow/mainwindow.h index 3ea82ca..c06f8e9 100644 --- a/src/server/mainwindow/mainwindow.h +++ b/src/server/mainwindow/mainwindow.h @@ -11,8 +11,7 @@ class ConnectionFrame; class ListenServer; class DiscoveryListener; -namespace Ui -{ +namespace Ui{ class MainWindow; } |
