mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 16:35:08 +00:00
LibCore: Convert CFile to ObjectPtr
This commit is contained in:
parent
31b38ed88f
commit
8d550c174e
30 changed files with 135 additions and 134 deletions
|
@ -356,13 +356,13 @@ void VBForm::mousemove_event(GMouseEvent& event)
|
|||
|
||||
void VBForm::load_from_file(const String& path)
|
||||
{
|
||||
CFile file(path);
|
||||
if (!file.open(CIODevice::ReadOnly)) {
|
||||
auto file = CFile::construct(path);
|
||||
if (!file->open(CIODevice::ReadOnly)) {
|
||||
GMessageBox::show(String::format("Could not open '%s' for reading", path.characters()), "Error", GMessageBox::Type::Error, GMessageBox::InputType::OK, window());
|
||||
return;
|
||||
}
|
||||
|
||||
auto file_contents = file.read_all();
|
||||
auto file_contents = file->read_all();
|
||||
auto form_json = JsonValue::from_string(file_contents);
|
||||
|
||||
if (!form_json.is_object()) {
|
||||
|
@ -392,8 +392,8 @@ void VBForm::load_from_file(const String& path)
|
|||
|
||||
void VBForm::write_to_file(const String& path)
|
||||
{
|
||||
CFile file(path);
|
||||
if (!file.open(CIODevice::WriteOnly)) {
|
||||
auto file = CFile::construct(path);
|
||||
if (!file->open(CIODevice::WriteOnly)) {
|
||||
GMessageBox::show(String::format("Could not open '%s' for writing", path.characters()), "Error", GMessageBox::Type::Error, GMessageBox::InputType::OK, window());
|
||||
return;
|
||||
}
|
||||
|
@ -414,7 +414,7 @@ void VBForm::write_to_file(const String& path)
|
|||
widget_array.append(widget_object);
|
||||
}
|
||||
form_object.set("widgets", widget_array);
|
||||
file.write(form_object.to_string());
|
||||
file->write(form_object.to_string());
|
||||
}
|
||||
|
||||
void VBForm::dump()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue