Removed PanelBar::internal_setup - a redundant function

This commit is contained in:
Joel Holdsworth 2009-03-16 17:49:23 +00:00
parent 192a3dfae8
commit 46d30306cb
2 changed files with 1 additions and 14 deletions

View file

@ -33,12 +33,6 @@ namespace widgets {
PanelBar::PanelBar(const gchar *stock_id) :
HBox(),
panelButton(StockID(stock_id))
{
internal_setup();
}
void
PanelBar::internal_setup()
{
panelButton.set_relief(RELIEF_NONE);
panelButton.unset_flags(CAN_FOCUS);

View file

@ -45,14 +45,7 @@ public:
* panel.
**/
PanelBar(const gchar *stock_id);
private:
/**
* A helper function to do the internal setup of the widget.
**/
void internal_setup();
private:
/**