~andrebask/cometsound/cometsound

« back to all changes in this revision

Viewing changes to src/CometSound.py

  • Committer: andrebask
  • Date: 2012-06-27 19:20:51 UTC
  • Revision ID: git-v1:a9346d331f04adcb4cbc1b3913e8ca1ffc30e273
Fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
##
2
 
#    Project: CometSound - A music player written in Python 
 
2
#    Project: CometSound - A music player written in Python
3
3
#    Author: Andrea Bernardini <andrebask@gmail.com>
4
4
#    Copyright: 2010-2012 Andrea Bernardini
5
5
#    License: GPL-2+
32
32
 
33
33
#Gives a Name to the main process
34
34
spt.setproctitle('CometSound')
35
 
        
 
35
 
36
36
def main():
37
37
    gtk.main()
38
38
    return 0
43
43
    c = Controller(m)
44
44
    View(m, c)
45
45
    DbusService(c)
46
 
    main() 
 
46
    main()