Set application name

This commit is contained in:
Sebastian Lohff 2013-12-02 22:55:10 +01:00
parent be4fd828c0
commit 97c2440635
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from __future__ import print_function
import argparse import argparse
import yaml import yaml
import sys import sys
from PySide import QtGui from PySide import QtGui, QtCore
from music import MusicBox from music import MusicBox
from question import Questions from question import Questions
@ -28,6 +28,7 @@ if __name__ == '__main__':
# start gui # start gui
app = QtGui.QApplication([sys.argv[0]]) app = QtGui.QApplication([sys.argv[0]])
QtCore.QCoreApplication.setApplicationName("Seopardy")
# check and load config file # check and load config file
config = None config = None