U++ framework
Do not panic. Ask here before giving up.

Home » U++ Library support » StatusBar&InfoCtrl » Code rendudance in StatusBar::StatusBar() method
Code rendudance in StatusBar::StatusBar() method [message #22832] Fri, 21 August 2009 08:25 Go to previous message
tojocky is currently offline  tojocky
Messages: 607
Registered: April 2008
Location: UK
Contributor

Hello Mirek,

It is not so important... but the StatusBar::StatusBar() method have redundant code. Property frame.style is set double with same value.
here is the original code:
StatusBar::StatusBar()
{
	Height(5 + max(16, Draw::GetStdFontCy()));
	frame.style = frame.style = &StyleDefault();
	SetFrame(frame);
	AddFrame(grip);
}


And I think must to be:
StatusBar::StatusBar()
{
	Height(5 + max(16, Draw::GetStdFontCy()));
	frame.style = &StyleDefault();
	SetFrame(frame);
	AddFrame(grip);
}
 
Read Message
Read Message
Previous Topic: Adding some spacing to a statusbar
Next Topic: how to add a ToolBar to StatusBar
Goto Forum:
  


Current Time: Tue Jun 23 09:32:03 GMT+2 2026

Total time taken to generate the page: 0.02240 seconds