remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / plugins / echo / echo.C
index f52849f5f43190e0ba027d362d5b08935d783113..58f8cf00b5191ed4a6bf6291baa603e5dd1f9bd0 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * CINELERRA
  * Copyright (C) 1997-2011 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 "bcdisplayinfo.h"
@@ -61,7 +61,7 @@ void EchoConfig::copy_from(EchoConfig &that)
        offset = that.offset;
 }
 
-void EchoConfig::interpolate(EchoConfig &prev, EchoConfig &next, 
+void EchoConfig::interpolate(EchoConfig &prev, EchoConfig &next,
        int64_t prev_frame, int64_t next_frame, int64_t current_frame)
 {
        double frames = next_frame - prev_frame;
@@ -142,13 +142,13 @@ int EchoOffset::handle_event()
 void EchoWindow::create_objects()
 {
        int x = 170, y = 10;
-       add_subwindow(level_title=new EchoTitle(5, y + 10, _("Level: "), 
+       add_subwindow(level_title=new EchoTitle(5, y + 10, _("Level: "),
                plugin->db.fromdb(plugin->config.level)));
        add_subwindow(level = new EchoLevel(this, x, y)); y += 25;
        add_subwindow(atten_title=new EchoTitle(5, y + 10, _("Atten: "),
                plugin->db.fromdb(plugin->config.atten)));
        add_subwindow(atten = new EchoAtten(this, x + 35, y)); y += 25;
-       add_subwindow(offset_title=new EchoTitle(5, y + 10, _("Offset: "), 
+       add_subwindow(offset_title=new EchoTitle(5, y + 10, _("Offset: "),
                (int)plugin->config.offset));
        add_subwindow(offset = new EchoOffset(this, x, y)); y += 25;
        show_window();