Removed info box for more compatibility

This commit is contained in:
Timothy Warren 2012-02-01 11:37:56 -05:00
parent d0c1810818
commit 2c75a4f133
1 changed files with 0 additions and 20 deletions

View File

@ -102,9 +102,6 @@ class Main extends GtkWindow {
// Add the menubar
$main_vbox->pack_start($this->_create_menu(), FALSE, FALSE);
// Add the info box
$main_vbox->pack_start($this->_create_infobox(), FALSE, FALSE);
// Add the main interface area hbox
$main_vbox->pack_start($main_hbox);
@ -178,23 +175,6 @@ class Main extends GtkWindow {
// --------------------------------------------------------------------------
/**
* Display Info box for errors/message
*/
private function _create_infobox()
{
$infobar = new GtkInfoBar();
$messagelabel = new GtkLabel('Welcome to OpenSQLManager!');
$contentarea = $infobar->get_content_area();
$contentarea->add($messagelabel);
$infobar->add_button(GTK::STOCK_OK, GTK::RESPONSE_OK);
$infobar->connect_simple('response', array($infobar, 'hide'));
return ($infobar);
}
// --------------------------------------------------------------------------
/**
* Lays out the left sidebar in the main window
*