Sha256: 6ca01503f4307934712a17c6624bdc38143da5cb6483548b5b9458c349a9def3
Contents?: true
Size: 673 Bytes
Versions: 43
Compression:
Stored size: 673 Bytes
Contents
#!/usr/bin/ruby module QtWebKit module Internal def self.init_all_classes getClassList.each do |c| classname = Qt::Internal::normalize_classname(c) id = Qt::Internal::findClass(c); Qt::Internal::insert_pclassid(classname, id) Qt::Internal::cpp_names[classname] = c klass = Qt::Internal::isQObject(c) ? Qt::Internal::create_qobject_class(classname, Qt) \ : Qt::Internal::create_qt_class(classname, Qt) Qt::Internal::classes[classname] = klass unless klass.nil? end end end end
Version data entries
43 entries across 23 versions & 3 rubygems