diff options
Diffstat (limited to 'sipgen/parser.y')
-rw-r--r-- | sipgen/parser.y | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sipgen/parser.y b/sipgen/parser.y index da83b35..7670cab 100644 --- a/sipgen/parser.y +++ b/sipgen/parser.y @@ -3262,12 +3262,6 @@ static void finishClass(sipSpec *pt, moduleDef *mod, classDef *cd, if ((flg = findOptFlag(of, "Supertype", dotted_name_flag)) != NULL) cd->supertype = cacheName(pt, flg->fvalue.sval); - if ((flg = findOptFlag(of, "PyQt4Flags", integer_flag)) != NULL) - cd->pyqt4_flags = flg->fvalue.ival; - - if (findOptFlag(of, "PyQt4NoQMetaObject", bool_flag) != NULL) - setPyQt4NoTQMetaObject(cd); - if (isOpaque(cd)) { if (findOptFlag(of, "External", bool_flag) != NULL) @@ -6069,15 +6063,6 @@ int pluginPyTQt(sipSpec *pt) /* - * Return TRUE if the PyQt4 plugin was specified. - */ -int pluginPyQt4(sipSpec *pt) -{ - return stringFind(pt->plugins, "PyQt4"); -} - - -/* * Return TRUE if a list of strings contains a given entry. */ static int stringFind(stringList *sl, const char *s) |