mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 16:45:07 +00:00
ClipboardHistory: Use pledge() and unveil() :^)
This commit is contained in:
parent
fe458f81ec
commit
d480944f6a
1 changed files with 21 additions and 0 deletions
|
@ -29,11 +29,32 @@
|
||||||
#include <LibGUI/Image.h>
|
#include <LibGUI/Image.h>
|
||||||
#include <LibGUI/TableView.h>
|
#include <LibGUI/TableView.h>
|
||||||
#include <LibGUI/Window.h>
|
#include <LibGUI/Window.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
|
if (pledge("stdio shared_buffer accept rpath unix cpath fattr", nullptr) < 0) {
|
||||||
|
perror("pledge");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
GUI::Application app(argc, argv);
|
GUI::Application app(argc, argv);
|
||||||
|
|
||||||
|
if (pledge("stdio shared_buffer accept rpath", nullptr) < 0) {
|
||||||
|
perror("pledge");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (unveil("/res", "r") < 0) {
|
||||||
|
perror("unveil");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (unveil(nullptr, nullptr) < 0) {
|
||||||
|
perror("unveil");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
auto main_window = GUI::Window::construct();
|
auto main_window = GUI::Window::construct();
|
||||||
main_window->set_title("Clipboard history");
|
main_window->set_title("Clipboard history");
|
||||||
main_window->set_rect(670, 65, 325, 500);
|
main_window->set_rect(670, 65, 325, 500);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue