1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3
# This file is in the public domain
7
from gettext import gettext as _
8
gettext.textdomain('qreator')
11
logger = logging.getLogger('qreator')
13
from qreator_lib.AboutDialog import AboutDialog
15
# See qreator_lib.AboutDialog.py for more details about how this class works.
16
class AboutQreatorDialog(AboutDialog):
17
__gtype_name__ = "AboutQreatorDialog"
19
def finish_initializing(self, builder): # pylint: disable=E1002
20
"""Set up the about dialog"""
21
super(AboutQreatorDialog, self).finish_initializing(builder)
23
# Code for other initialization actions should be added here.