SF.net SVN: fclient:[861] trunk/fclient/fclient/impl/config.py
Status: Pre-Alpha
Brought to you by:
jurner
From: <jU...@us...> - 2008-08-02 11:36:14
|
Revision: 861 http://fclient.svn.sourceforge.net/fclient/?rev=861&view=rev Author: jUrner Date: 2008-08-02 11:36:24 +0000 (Sat, 02 Aug 2008) Log Message: ----------- title bar support Modified Paths: -------------- trunk/fclient/fclient/impl/config.py Modified: trunk/fclient/fclient/impl/config.py =================================================================== --- trunk/fclient/fclient/impl/config.py 2008-08-02 11:35:59 UTC (rev 860) +++ trunk/fclient/fclient/impl/config.py 2008-08-02 11:36:24 UTC (rev 861) @@ -137,6 +137,7 @@ self.id = idGlobalFeedback self.menuBar = None self.statusBar = None + self.titleBar = None feedbackParent = ObjectRegistry.get(idGlobalFeedback, None) if feedbackParent is not None: @@ -146,6 +147,9 @@ mthd = getattr(feedbackParent, 'statusBar', None) if mthd is not None: self.statusBar = mthd() + mthd = getattr(feedbackParent, 'titleBar', None) + if mthd is not None: + self.titleBar = mthd() def setVisible(self, flag): pass This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |