remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / cinelerra / labelnavigate.C
index 126ad0ec9603cf921cbe6cc31f0faa361594d6d1..537c5f1cd8ed47371099bad1a0c1db8e3f23a504 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * CINELERRA
  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
+ *
  * 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"));
 }