Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[sipify] fix private inheritance with namespace
  • Loading branch information
3nids committed Apr 5, 2017
1 parent d701484 commit c2c9335
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/sipify.pl
Expand Up @@ -234,7 +234,7 @@ sub processDoxygenLine
if ($4){
my $m = $4;
$m =~ s/public //g;
$m =~ s/,?\s*private \w+//;
$m =~ s/,?\s*private \w+(::\w+)?//;
$m =~ s/(\s*:)?\s*$//;
$line .= $m;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/sipifyheader.h
Expand Up @@ -82,7 +82,7 @@ typedef QVector<QVariant> QgsSuperClass;
* \since QGIS 3.0
* \note some other note
*/
class CORE_EXPORT QgsSipifyHeader : public QtClass<QVariant>, private QgsBaseClass
class CORE_EXPORT QgsSipifyHeader : public QtClass<QVariant>, private Ui::QgsBaseClass
{

#ifdef SIP_RUN
Expand Down

0 comments on commit c2c9335

Please sign in to comment.