mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-22 13:21:26 +08:00
21 lines
321 B
Python
21 lines
321 B
Python
from PyQt4.QtCore import *
|
|
from PyQt4.QtGui import *
|
|
|
|
#? ['QActionGroup']
|
|
QActionGroup
|
|
|
|
#? ['currentText']
|
|
QStyleOptionComboBox().currentText
|
|
|
|
#? []
|
|
QStyleOptionComboBox().currentText.
|
|
|
|
from PyQt4 import QtGui
|
|
|
|
#? ['currentText']
|
|
QtGui.QStyleOptionComboBox().currentText
|
|
|
|
#? []
|
|
QtGui.QStyleOptionComboBox().currentText.
|
|
|