From 6765c43a52a8e95bdca489e0be19ef23a0964709 Mon Sep 17 00:00:00 2001 From: hasherezade Date: Sun, 20 Apr 2025 23:30:51 +0000 Subject: [PATCH] deploy: ae104aba70458087346b397e4a8e1453fe238707 --- _abstract_byte_buffer_8cpp_source.html | 4 ++-- _resource_version_wrapper_8h_source.html | 10 ++++------ _wrapped_value_8cpp_source.html | 2 +- class_resource_version_wrapper.html | 2 +- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/_abstract_byte_buffer_8cpp_source.html b/_abstract_byte_buffer_8cpp_source.html index 941bdb0a..ec1ed835 100644 --- a/_abstract_byte_buffer_8cpp_source.html +++ b/_abstract_byte_buffer_8cpp_source.html @@ -283,7 +283,7 @@ $(function(){ initResizable(false); });
168 }
169 WORD* ptr = (WORD*) this->getContentAt(rawOffset, size);
170 if (ptr == NULL) return "";
-
171 return QString::fromUtf16(ptr, static_cast<int>(len));
+
171 return QString::fromUtf16(reinterpret_cast<const char16_t*>(ptr), static_cast<int>(len));
172}
173
@@ -299,7 +299,7 @@ $(function(){ initResizable(false); });
182 if (!ptr) return "";
183
184 size_t asciiLen = pe_util::getAsciiLenW(ptr, len, acceptNonTerminated);
-
185 return QString::fromUtf16(ptr, static_cast<int>(asciiLen));
+
185 return QString::fromUtf16(reinterpret_cast<const char16_t*>(ptr), static_cast<int>(asciiLen));
186}
187
diff --git a/_resource_version_wrapper_8h_source.html b/_resource_version_wrapper_8h_source.html index ce74b62e..04a3842a 100644 --- a/_resource_version_wrapper_8h_source.html +++ b/_resource_version_wrapper_8h_source.html @@ -158,12 +158,10 @@ $(function(){ initResizable(false); });
60 }
61
-
62
-
63
-
64friend class ResourceContentFactory;
-
65};
+
62friend class ResourceContentFactory;
+
63};
-
66
+
64
uint32_t bufsize_t
#define FIELD_NONE
@@ -176,7 +174,7 @@ $(function(){ initResizable(false); });
virtual size_t getSubFieldsCount()
QString getVersionText()
virtual void * getPtr()
-
friend class ResourceContentFactory
+
friend class ResourceContentFactory
virtual bufsize_t getSize()
virtual void * getFieldPtr(size_t fieldId, size_t subField)
ResourceFID
diff --git a/_wrapped_value_8cpp_source.html b/_wrapped_value_8cpp_source.html index 276e1f65..1c92a4d1 100644 --- a/_wrapped_value_8cpp_source.html +++ b/_wrapped_value_8cpp_source.html @@ -113,7 +113,7 @@ $(function(){ initResizable(false); });
18
19 bufsize_t wSize = m_Size / bufsize_t(sizeof(WORD));
20 WORD *strPtr = (WORD*) this->m_Owner->getContentAt(m_Offset, m_Size);
-
21 return QString::fromUtf16(strPtr, static_cast<int>(wSize));
+
21 return QString::fromUtf16(reinterpret_cast<const char16_t*>(strPtr), static_cast<int>(wSize));
22 }
23 return QVariant("...");
24}
diff --git a/class_resource_version_wrapper.html b/class_resource_version_wrapper.html index 21fc1b28..274f6ce5 100644 --- a/class_resource_version_wrapper.html +++ b/class_resource_version_wrapper.html @@ -855,7 +855,7 @@ Here is the call graph for this function:
-

Definition at line 64 of file ResourceVersionWrapper.h.

+

Definition at line 62 of file ResourceVersionWrapper.h.