~sam92/openlp/multiple-songbooks

« back to all changes in this revision

Viewing changes to openlp/plugins/songusage/forms/songusagedeleteform.py

  • Committer: Samuel Mehrbrodt
  • Date: 2016-01-08 23:05:43 UTC
  • mfrom: (2587.1.6 openlp)
  • Revision ID: s.mehrbrodt@gmail.com-20160108230543-eyzcimqcz9dlnmcs
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# Temple Place, Suite 330, Boston, MA 02111-1307 USA                          #
21
21
###############################################################################
22
22
 
23
 
from PyQt5 import QtWidgets
 
23
from PyQt5 import QtCore, QtWidgets
24
24
 
25
25
from openlp.core.common import RegistryProperties, translate
26
26
from openlp.plugins.songusage.lib.db import SongUsageItem
36
36
        Constructor
37
37
        """
38
38
        self.manager = manager
39
 
        super(SongUsageDeleteForm, self).__init__(parent)
 
39
        super(SongUsageDeleteForm, self).__init__(parent, QtCore.Qt.WindowSystemMenuHint
 
40
                | QtCore.Qt.WindowTitleHint)
40
41
        self.setupUi(self)
41
42
        self.button_box.clicked.connect(self.on_button_box_clicked)
42
43