On Fri, 29 Jan 2010 07:00:13 -0800 (PST), dizou wrote: > I made a Icons.qrc file. I am now doing this: > > pyrcc4 -py2 Icons.qrc -o IconsCompiled > > What should the extension IconsCompiled be? How would I import that file to > my PyQt program?
It's a Python module, so call it IconsCompiled.py or Icons_rc.py. Just import it into your program with import IconsCompiled or import Icons_rc depending on what you called the file. David _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
