mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:07:36 +00:00
NetworkSettings: Port NetworkSettings to GML compilation
This commit is contained in:
parent
1e11116d65
commit
8118ea764f
5 changed files with 12 additions and 14 deletions
|
@ -16,11 +16,14 @@ class NetworkSettingsWidget : public GUI::SettingsWindow::Tab {
|
|||
C_OBJECT_ABSTRACT(NetworkSettingsWidget)
|
||||
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<NetworkSettingsWidget>> try_create();
|
||||
static ErrorOr<NonnullRefPtr<NetworkSettingsWidget>> create();
|
||||
|
||||
virtual void apply_settings() override;
|
||||
void switch_adapter(DeprecatedString const& adapter);
|
||||
|
||||
protected:
|
||||
static ErrorOr<NonnullRefPtr<NetworkSettingsWidget>> try_create();
|
||||
|
||||
private:
|
||||
NetworkSettingsWidget() = default;
|
||||
ErrorOr<void> setup();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue