Corrected some indentation

This commit is contained in:
Joel Holdsworth 2008-06-19 21:37:36 +01:00
parent 3cc0f72389
commit f8a2291118

View file

@ -43,18 +43,18 @@ namespace timeline {
TimelineRuler::TimelineRuler() :
Glib::ObjectBase("TimelineRuler")
{
{
set_flags(Gtk::NO_WINDOW); // This widget will not have a window
set_size_request(-1, 20);
// Install style properties
timeScale = GAVL_TIME_SCALE / 200;
timeOffset = 0;
}
}
bool
TimelineRuler::on_expose_event(GdkEventExpose* event)
{
{
// This is where we draw on the window
Glib::RefPtr<Gdk::Window> window = get_window();
if(!window)
@ -97,14 +97,14 @@ TimelineRuler::on_expose_event(GdkEventExpose* event)
}
return true;
}
}
void
TimelineRuler::read_styles()
{
{
//background = WindowManager::read_style_colour_property(
// *this, "background", 0, 0, 0);
}
}
} // namespace timeline
} // namespace widgets