~john+ubuntu-g/openlp/singingthefaith

« back to all changes in this revision

Viewing changes to openlp/core/ui/aboutform.py

  • Committer: Jonathan Springer
  • Date: 2015-11-07 00:49:40 UTC
  • mto: This revision was merged to the branch mainline in revision 2576.
  • Revision ID: springermac@gmail.com-20151107004940-m208ohzwoc74yq51
Migrate to PyQt5

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
"""
25
25
import webbrowser
26
26
 
27
 
from PyQt4 import QtGui
 
27
from PyQt5 import QtWidgets
28
28
 
29
29
from openlp.core.lib import translate
30
30
from openlp.core.utils import get_application_version
31
31
from .aboutdialog import UiAboutDialog
32
32
 
33
33
 
34
 
class AboutForm(QtGui.QDialog, UiAboutDialog):
 
34
class AboutForm(QtWidgets.QDialog, UiAboutDialog):
35
35
    """
36
36
    The About dialog
37
37
    """