- Tries to launch using pyqt 1st and then pyside
- Unified about.py, now using the same code git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@314 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
@@ -17,14 +17,23 @@
|
||||
#
|
||||
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
|
||||
|
||||
|
||||
from PyQt4 import QtCore, QtGui
|
||||
import os
|
||||
try: #If QtWebKit is available, uses it
|
||||
from PyQt4 import QtWebKit
|
||||
webk=True
|
||||
|
||||
try:
|
||||
from PyQt4 import QtCore, QtGui
|
||||
try: #If QtWebKit is available, uses it
|
||||
from PyQt4 import QtWebKit
|
||||
webk=True
|
||||
except:
|
||||
webk=False
|
||||
|
||||
except:
|
||||
webk=False
|
||||
from PySide import QtCore, QtGui
|
||||
try: #If QtWebKit is available, uses it
|
||||
from PySide import QtWebKit
|
||||
webk=True
|
||||
except:
|
||||
webk=False
|
||||
|
||||
version=0
|
||||
|
||||
|
Reference in New Issue
Block a user