Re: [PyQt] Problems with KSysTray

2008-05-16 Thread Russell Valentine
By setting KAboutData and putting it in the KCmdLineArgs it puts programName instead of unknown. aboutData = KAboutData("appName", "My Super Cool Program Name", "0.01", "This app does everything", KAboutData.License_GPL, "(c) 2008 John Doe", None, "http://mywebpage.org";, "[EMAIL PROTECTED]");

[PyQt] Problems with KSysTray

2008-05-16 Thread David Klasinc
Greetings, I hope that this list deals with PyKDE issues too. :) Anyways, I am making an application that stays docked in KDE Systray. Copied straight from the PyKDE examples, this is my code: self.systray = KSystemTray (self, "MyApp") self.systray.setCaption ("MyApp")