Skip to content

Commit 4a0eedd

Browse files
committedJan 17, 2018
version compare is not strict
also fix sipify test
1 parent 458cab7 commit 4a0eedd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎python/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ ENDIF(NOT QT_MOBILITY_LOCATION_FOUND)
175175
# * prepend auto-generated Python signature to existing Docstrings
176176
# * document template based classes
177177
SET(DOCSTRINGSTEMPLATE "//")
178-
IF(${SIP_VERSION_STR} VERSION_GREATER 4.19.6)
178+
IF(${SIP_VERSION_STR} VERSION_GREATER 4.19.7)
179179
SET(DEFAULTDOCSTRINGSIGNATURE "%DefaultDocstringSignature \"prepended\"")
180180
SET(DOCSTRINGSTEMPLATE "")
181-
ENDIF(${SIP_VERSION_STR} VERSION_GREATER 4.19.6)
181+
ENDIF(${SIP_VERSION_STR} VERSION_GREATER 4.19.7)
182182

183183
# core module
184184
FILE(GLOB_RECURSE sip_files_core core/*.sip core/*.sip.in)

‎tests/code_layout/sipifyheader.expected.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ remove argument
307307
void FallBackToPublic();
308308

309309
private:
310-
void ShowThisPrivateOne() ;
310+
void ShowThisPrivateOne();
311311
};
312312

313313
class ClassWithPrivateInheritanceOnly /Abstract/

0 commit comments

Comments
 (0)
Please sign in to comment.