Fix typos.

This commit is contained in:
Stefan Kangas 2010-12-24 23:17:28 +01:00
parent e0da4c2378
commit 87ad80f17e
3 changed files with 5 additions and 5 deletions

View file

@ -92,14 +92,14 @@ TimelinePanel::TimelinePanel(workspace::PanelManager &panel_manager,
toolbar.append(forwardButton);
toolbar.append(nextButton);
toolbar.append(seperator1);
toolbar.append(separator1);
toolbar.append(arrowTool,
mem_fun(this, &TimelinePanel::on_arrow_tool));
toolbar.append(iBeamTool,
mem_fun(this, &TimelinePanel::on_ibeam_tool));
toolbar.append(seperator2);
toolbar.append(separator2);
toolbar.append(zoomIn, mem_fun(this, &TimelinePanel::on_zoom_in));
toolbar.append(zoomOut, mem_fun(this, &TimelinePanel::on_zoom_out));

View file

@ -181,12 +181,12 @@ private:
MiniToggleButton arrowTool;
MiniToggleButton iBeamTool;
Gtk::SeparatorToolItem seperator1;
Gtk::SeparatorToolItem separator1;
MiniButton zoomIn;
MiniButton zoomOut;
Gtk::SeparatorToolItem seperator2;
Gtk::SeparatorToolItem separator2;
// Internals
bool updatingToolbar;

View file

@ -66,7 +66,7 @@ Clip::draw_clip(Cairo::RefPtr<Cairo::Context> cr,
Cairo::FONT_WEIGHT_NORMAL);
cr->set_font_face(font);
cr->set_font_size(11);
cr->show_text("Track"); // TODO: get clip name from model
cr->show_text("Clip Name"); // TODO: get clip name from model
// TODO: Show thumbnails for clip
}