- 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:
LtWorf
2011-10-08 17:05:07 +00:00
parent 4c5915e854
commit 954dabb447
4 changed files with 40 additions and 311 deletions

View File

@@ -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