diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-09 22:33:09 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-09 22:33:09 -0600 |
commit | b1614829b5ea99db3c6768dcf704a1b67c40cc73 (patch) | |
tree | d323c4f0c3901397be556db43427a0843116ebbf /ui/qt5/networkingpage.hh | |
parent | f879356affc02c2346f95f1073ce3e0be9e8f3bf (diff) | |
download | horizon-b1614829b5ea99db3c6768dcf704a1b67c40cc73.tar.gz horizon-b1614829b5ea99db3c6768dcf704a1b67c40cc73.tar.bz2 horizon-b1614829b5ea99db3c6768dcf704a1b67c40cc73.tar.xz horizon-b1614829b5ea99db3c6768dcf704a1b67c40cc73.zip |
Qt UI: Fix up NetworkingPage to fit with modern style
Diffstat (limited to 'ui/qt5/networkingpage.hh')
-rw-r--r-- | ui/qt5/networkingpage.hh | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/ui/qt5/networkingpage.hh b/ui/qt5/networkingpage.hh index 3353fb6..5914af2 100644 --- a/ui/qt5/networkingpage.hh +++ b/ui/qt5/networkingpage.hh @@ -1,3 +1,15 @@ +/* + * networkingpage.hh - Definition of the UI.Network.AddressType page + * horizon-qt5, the Qt 5 user interface for + * Project Horizon + * + * Copyright (c) 2019 Adélie Linux and contributors. All rights reserved. + * This code is licensed under the AGPL 3.0 license, as noted in the + * LICENSE-code file in the root directory of this repository. + * + * SPDX-License-Identifier: AGPL-3.0-only + */ + #ifndef NETWORKINGPAGE_HH #define NETWORKINGPAGE_HH @@ -8,7 +20,7 @@ class NetworkingPage : public HorizonWizardPage { public: - NetworkingPage(QWidget *parent = 0); + NetworkingPage(QWidget *parent = nullptr); bool isComplete() const; int nextId() const; @@ -17,4 +29,4 @@ private: QRadioButton *simple, *advanced, *skip; }; -#endif // NETWORKINGPAGE_HH +#endif /* !NETWORKINGPAGE_HH */ |