Minor formatting changes

This commit is contained in:
Timothy Warren 2012-03-26 12:55:52 -04:00
parent a82652861b
commit 427a1c0ccb
1 changed files with 9 additions and 0 deletions

View File

@ -17,6 +17,11 @@ class Connection_Sidebar extends GtkVBox {
protected $settings, $menu, $treeview, $model;
private static $instance;
/**
* Return the current instance of the class
*
* @return Connection_Sidebar
*/
public static function &get_instance()
{
if( ! isset(self::$instance))
@ -28,6 +33,8 @@ class Connection_Sidebar extends GtkVBox {
return self::$instance;
}
// --------------------------------------------------------------------------
/**
* Constructor method
*/
@ -69,6 +76,8 @@ class Connection_Sidebar extends GtkVBox {
$this->pack_start($add_button, FALSE);
}
// --------------------------------------------------------------------------
/**
* Renders the connection sidebar widget
*/