add license header
This commit is contained in:
parent
a39e1acab6
commit
cfdbb80d5d
|
@ -10,8 +10,6 @@ exec python -OOt "$0" ${1+"$@"}
|
|||
## - Nikos Kouremenos <kourem@gmail.com>
|
||||
## - Dimitur Kirov <dkirov@gmail.com>
|
||||
##
|
||||
## This file was initially written by Dimitur Kirov
|
||||
##
|
||||
## Copyright (C) 2003-2005 Gajim Team
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
|
|
|
@ -1,6 +1,25 @@
|
|||
#gtkwin32.py
|
||||
# code initially based on
|
||||
# http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/334779
|
||||
## src/systraywin32.py
|
||||
##
|
||||
## Gajim Team:
|
||||
## - Yann Le Boulanger <asterix@lagaule.org>
|
||||
## - Vincent Hanquez <tab@snarc.org>
|
||||
## - Nikos Kouremenos <kourem@gmail.com>
|
||||
## - Dimitur Kirov <dkirov@gmail.com>
|
||||
##
|
||||
## code initially based on
|
||||
## http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/334779
|
||||
##
|
||||
## Copyright (C) 2003-2005 Gajim Team
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published
|
||||
## by the Free Software Foundation; version 2 only.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
|
||||
__version__ = '1.01'
|
||||
|
||||
|
@ -286,4 +305,4 @@ class SystrayWin32(systray.Systray):
|
|||
label = _('Gajim - 1 unread message')
|
||||
else:
|
||||
label = 'Gajim'
|
||||
self.tip.set_tip(self.t, label)
|
||||
self.tip.set_tip(self.t, label)
|
||||
|
|
Loading…
Reference in New Issue