diff options
author | 2023-08-10 23:54:44 +0000 | |
---|---|---|
committer | 2023-08-17 20:59:54 +0000 | |
commit | 3f9f863ea038c335d284b95cf2117e6b37e134eb (patch) | |
tree | e5966195928cba09d6c8dd25942e7b394c63adce /libs/hwui/RenderNode.h | |
parent | 3e85a02e9fb80d995cd4ddc9871437f8efcd4585 (diff) |
Use String8/16 c_str [graphics]
Bug: 295394788
Test: make checkbuild
Change-Id: I605c6c25c2415bdb4996715f270ee8be9e9d1a23
Diffstat (limited to 'libs/hwui/RenderNode.h')
-rw-r--r-- | libs/hwui/RenderNode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/RenderNode.h b/libs/hwui/RenderNode.h index b5b828e50cdd..529a49e9277e 100644 --- a/libs/hwui/RenderNode.h +++ b/libs/hwui/RenderNode.h @@ -114,7 +114,7 @@ public: return mDisplayList.containsProjectionReceiver(); } - const char* getName() const { return mName.string(); } + const char* getName() const { return mName.c_str(); } void setName(const char* name) { if (name) { |