X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Flabelnavigate.C;h=537c5f1cd8ed47371099bad1a0c1db8e3f23a504;hp=126ad0ec9603cf921cbe6cc31f0faa361594d6d1;hb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;hpb=5a1b2bb96f2bd6b7ef4f8031763683726c02219d diff --git a/cinelerra-5.1/cinelerra/labelnavigate.C b/cinelerra-5.1/cinelerra/labelnavigate.C index 126ad0ec..537c5f1c 100644 --- a/cinelerra-5.1/cinelerra/labelnavigate.C +++ b/cinelerra-5.1/cinelerra/labelnavigate.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * */ #include "labelnavigate.h" @@ -45,21 +45,21 @@ LabelNavigate::~LabelNavigate() void LabelNavigate::create_objects() { - gui->add_subwindow(prev_label = new PrevLabel(mwindow, - this, - x, + gui->add_subwindow(prev_label = new PrevLabel(mwindow, + this, + x, y)); - gui->add_subwindow(next_label = new NextLabel(mwindow, - this, - x + prev_label->get_w(), + gui->add_subwindow(next_label = new NextLabel(mwindow, + this, + x + prev_label->get_w(), y)); } PrevLabel::PrevLabel(MWindow *mwindow, LabelNavigate *navigate, int x, int y) : BC_Button(x, y, mwindow->theme->get_image_set("prevlabel")) -{ - this->mwindow = mwindow; +{ + this->mwindow = mwindow; this->navigate = navigate; set_tooltip(_("Previous label")); } @@ -76,9 +76,9 @@ int PrevLabel::handle_event() NextLabel::NextLabel(MWindow *mwindow, LabelNavigate *navigate, int x, int y) : BC_Button(x, y, mwindow->theme->get_image_set("nextlabel")) -{ - this->mwindow = mwindow; - this->navigate = navigate; +{ + this->mwindow = mwindow; + this->navigate = navigate; set_tooltip(_("Next label")); }