t-artistik / qtscriptgenerator

Automatically exported from code.google.com/p/qtscriptgenerator
0 stars 0 forks source link

Problem with QMenu::addAction() (prototype shadowing) #56

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
addAction(QAction*) is defined in QWidget; however, QMenu introduces new 
overloads for
addAction(). The generated implementation of QMenu.prototype.addAction currently
doesn't generate a binding to QWidget::addAction(), which means that calling 
addAction()
with a QAction as argument is impossible (QWidget.prototype.addAction is 
effectively
"unreachable").

Original issue reported on code.google.com by kentm...@gmail.com on 18 Nov 2009 at 12:22