Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ElaWidgetTools
2 changes: 1 addition & 1 deletion scripts/pyqt/gen_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def cast_h_to_sip(filename):
full_sip_content.append(sip_class_def)
final_output = "\n".join(full_sip_content)
ls = final_output.splitlines()
#ls = [_ for _ in ls if "QVector" not in _] # 不支持的类型转换
ls = [_ for _ in ls if "QVector" not in _] # 不支持的类型转换
ls = [_ for _ in ls if "QList<QVariantMap>" not in _] # 不支持的类型转换
bad = ("long *", "qintptr *")[forQt5]
ls = [_ for _ in ls if bad not in _] # 这个是Qt5的条件编译,Qt6的话要删掉另一条
Expand Down
Loading