~folke-schwinning/facebook/trunk

« back to all changes in this revision

Viewing changes to desktop_facebook/AboutDesktopFacebookDialog.py

  • Committer: Folke Schwinning
  • Date: 2012-08-24 18:28:46 UTC
  • Revision ID: folke@schwinning.de-20120824182846-c9ysnhsgyxx6b387
Initial project creation with Quickly!

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('desktop-facebook')
 
9
 
 
10
import logging
 
11
logger = logging.getLogger('desktop_facebook')
 
12
 
 
13
from desktop_facebook_lib.AboutDialog import AboutDialog
 
14
 
 
15
# See desktop_facebook_lib.AboutDialog.py for more details about how this class works.
 
16
class AboutDesktopFacebookDialog(AboutDialog):
 
17
    __gtype_name__ = "AboutDesktopFacebookDialog"
 
18
    
 
19
    def finish_initializing(self, builder): # pylint: disable=E1002
 
20
        """Set up the about dialog"""
 
21
        super(AboutDesktopFacebookDialog, self).finish_initializing(builder)
 
22
 
 
23
        # Code for other initialization actions should be added here.
 
24