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
bufsize_t
uint32_t bufsize_t
Definition AbstractByteBuffer.h:14
FIELD_NONE
#define FIELD_NONE
Definition ExeElementWrapper.h:9
ResourceContentWrapper.h
@@ -176,7 +174,7 @@ $(function(){ initResizable(false); });
ResourceVersionWrapper::getSubFieldsCount
virtual size_t getSubFieldsCount()
Definition ResourceVersionWrapper.h:40
ResourceVersionWrapper::getVersionText
QString getVersionText()
Definition ResourceVersionWrapper.h:50
ResourceVersionWrapper::getPtr
virtual void * getPtr()
Definition ResourceVersionWrapper.h:36
-
ResourceVersionWrapper::ResourceContentFactory
friend class ResourceContentFactory
Definition ResourceVersionWrapper.h:64
+
ResourceVersionWrapper::ResourceContentFactory
friend class ResourceContentFactory
Definition ResourceVersionWrapper.h:62
ResourceVersionWrapper::getSize
virtual bufsize_t getSize()
Definition ResourceVersionWrapper.h:37
ResourceVersionWrapper::getFieldPtr
virtual void * getFieldPtr(size_t fieldId, size_t subField)
Definition ResourceVersionWrapper.cpp:77
ResourceVersionWrapper::ResourceFID
ResourceFID
Definition ResourceVersionWrapper.h:10
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.