mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 12:32:21 +00:00
CrashReporter: Port CrashReporter to GML Compiler
This commit is contained in:
parent
4cb2ff1428
commit
44d623d588
Notes:
sideshowbarker
2024-07-18 02:47:59 +09:00
Author: https://github.com/mrunix00
Commit: 44d623d588
Pull-request: https://github.com/SerenityOS/serenity/pull/22442
Reviewed-by: https://github.com/ADKaster ✅
4 changed files with 30 additions and 9 deletions
24
Userland/Applications/CrashReporter/MainWidget.h
Normal file
24
Userland/Applications/CrashReporter/MainWidget.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* Copyright (c) 2023, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Widget.h>
|
||||
|
||||
namespace CrashReporter {
|
||||
|
||||
class MainWidget final : public GUI::Widget {
|
||||
C_OBJECT(MainWidget)
|
||||
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<MainWidget>> try_create();
|
||||
virtual ~MainWidget() override = default;
|
||||
|
||||
private:
|
||||
MainWidget() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue