SF.net SVN: fclient:[932] trunk/fclient/fclient/impl/ViewConnection/ ViewObject.py
Status: Pre-Alpha
Brought to you by:
jurner
From: <jU...@us...> - 2008-08-17 12:57:43
|
Revision: 932 http://fclient.svn.sourceforge.net/fclient/?rev=932&view=rev Author: jUrner Date: 2008-08-17 12:57:52 +0000 (Sun, 17 Aug 2008) Log Message: ----------- this and that Modified Paths: -------------- trunk/fclient/fclient/impl/ViewConnection/ViewObject.py Modified: trunk/fclient/fclient/impl/ViewConnection/ViewObject.py =================================================================== --- trunk/fclient/fclient/impl/ViewConnection/ViewObject.py 2008-08-16 19:16:39 UTC (rev 931) +++ trunk/fclient/fclient/impl/ViewConnection/ViewObject.py 2008-08-17 12:57:52 UTC (rev 932) @@ -17,6 +17,7 @@ from .. import ViewObject from . import ViewConnection +from .prefs.PrefsConnectionWidget import PrefsPageConnectionExpertSettings #************************************************************************************ # #************************************************************************************ @@ -27,10 +28,11 @@ self._widget = None def close(self): - pass + ViewObject.ViewObject.close(self) def create(self): self._widget = ViewConnection.ViewConnectionWidget(self.parentWidget()) + ViewObject.ViewObject.create(self) return self.widget() def displayName(self): @@ -43,7 +45,7 @@ return config.IdViewObjectConnection def prefsPage(self): - pass + return PrefsPageConnectionExpertSettings() def widget(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |