mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
[PR #203] [MERGED] Use QChar* instead of custom string typedefs #241
Labels
No labels
bug
enhancement
help wanted
help wanted
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/qmlnet#241
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/qmlnet/qmlnet/pull/203
Author: @shartte
Created: 5/23/2020
Status: ✅ Merged
Merged: 5/26/2020
Merged by: @pauldotknopf
Base:
develop← Head:use-qchar📝 Commits (1)
555ad31Use QChar* instead of custom string typedefs📊 Changes
18 files changed (+93 additions, -127 deletions)
View changed files
📝
src/native/QmlNet/QmlNet.h(+0 -31)📝
src/native/QmlNet/QmlNet/qml/NetJsValue.cpp(+4 -4)📝
src/native/QmlNet/QmlNet/qml/NetQObject.cpp(+13 -13)📝
src/native/QmlNet/QmlNet/qml/NetTestHelper.cpp(+2 -2)📝
src/native/QmlNet/QmlNet/qml/NetVariant.cpp(+4 -4)📝
src/native/QmlNet/QmlNet/qml/QCommon.cpp(+2 -2)📝
src/native/QmlNet/QmlNet/qml/QCoreApplication.cpp(+4 -4)📝
src/native/QmlNet/QmlNet/qml/QLocaleInterop.cpp(+1 -1)📝
src/native/QmlNet/QmlNet/qml/QQmlApplicationEngine.cpp(+21 -21)📝
src/native/QmlNet/QmlNet/qml/QQuickStyle.cpp(+4 -4)📝
src/native/QmlNet/QmlNet/qml/QResource.cpp(+6 -6)📝
src/native/QmlNet/QmlNet/types/Callbacks.cpp(+12 -11)📝
src/native/QmlNet/QmlNet/types/NetMethodInfo.cpp(+4 -4)📝
src/native/QmlNet/QmlNet/types/NetPropertyInfo.cpp(+4 -4)📝
src/native/QmlNet/QmlNet/types/NetReference.cpp(+2 -2)📝
src/native/QmlNet/QmlNet/types/NetSignalInfo.cpp(+2 -2)📝
src/native/QmlNet/QmlNet/types/NetTypeInfo.cpp(+6 -10)📝
src/native/QmlNet/QmlNet/types/NetTypeManager.cpp(+2 -2)📄 Description
Qt defines QChar as a class containing a ushort, which
should be consistently 16-bit across supported platforms.
this change uses QChar* instead of custom typedefs
to intepret LPWStr arguments passed to/from .NET.
See #190
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.