mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
Inspector: Store remote object addresses as uintptr_t instead of String
This commit is contained in:
parent
fbf345e03e
commit
6d66462254
Notes:
sideshowbarker
2024-07-19 08:53:43 +09:00
Author: https://github.com/awesomekling
Commit: 6d66462254
5 changed files with 8 additions and 8 deletions
|
@ -109,7 +109,7 @@ GUI::Variant RemoteObjectGraphModel::data(const GUI::ModelIndex& index, Role rol
|
|||
return m_object_icon;
|
||||
}
|
||||
if (role == Role::Display) {
|
||||
return String::format("%s{%s}", remote_object->class_name.characters(), remote_object->address.characters());
|
||||
return String::format("%s{%p}", remote_object->class_name.characters(), remote_object->address);
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue