~dpm/qreator/snap

« back to all changes in this revision

Viewing changes to qreator/AboutQreatorDialog.py

  • Committer: David Planella
  • Date: 2012-05-17 08:12:32 UTC
  • Revision ID: david.planella@ubuntu.com-20120517081232-uq92gvxfji2v68gi
First working version ready for release

Show diffs side-by-side

added added

removed removed

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