mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
fix #3378
git-svn-id: http://svn.osgeo.org/qgis/trunk@14988 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
a630e4a818
commit
741d99c9b0
@ -43,6 +43,10 @@ IF(NOT PYQT4_VERSION_NUM LESS 263941) # 0x040705
|
||||
SET(SIP_DISABLE_FEATURES ${SIP_DISABLE_FEATURES} QSETINT_CONVERSION)
|
||||
ENDIF(NOT PYQT4_VERSION_NUM LESS 263941)
|
||||
|
||||
IF(NOT PYQT4_VERSION_NUM LESS 264194) # 0x040802
|
||||
SET(SIP_DISABLE_FEATURES ${SIP_DISABLE_FEATURES} QSETTYPE_CONVERSION)
|
||||
ENDIF(NOT PYQT4_VERSION_NUM LESS 264194)
|
||||
|
||||
# core module
|
||||
FILE(GLOB sip_files_core core/*.sip)
|
||||
set(SIP_EXTRA_FILES_DEPEND ${sip_files_core})
|
||||
|
@ -15,6 +15,7 @@ which are not wrapped by PyQt:
|
||||
*/
|
||||
|
||||
%Feature QSETINT_CONVERSION
|
||||
%Feature QSETTYPE_CONVERSION
|
||||
|
||||
%ModuleHeaderCode
|
||||
// From Python 2.5, some functions use Py_ssize_t instead of int
|
||||
@ -320,7 +321,7 @@ template <TYPE>
|
||||
};
|
||||
%End
|
||||
|
||||
|
||||
%If (QSETTYPE_CONVERSION)
|
||||
template <TYPE>
|
||||
%MappedType QSet<TYPE>
|
||||
{
|
||||
@ -394,8 +395,7 @@ template <TYPE>
|
||||
%End
|
||||
|
||||
};
|
||||
|
||||
|
||||
%End
|
||||
|
||||
template<TYPE>
|
||||
%MappedType QMap<int, QMap<int, TYPE> >
|
||||
|
Loading…
x
Reference in New Issue
Block a user