remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / cinelerra / pluginprefs.C
index 3b817625d1a0121428d66a38b4e66dd07b1754d2..6e09c2087221fec8930c9e416c074149abba7761 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 "pluginprefs.h"
@@ -61,26 +61,26 @@ void PluginPrefs::create_objects()
        add_subwindow(ipathtext = new PluginGlobalPathText(x, y, pwindow, pwindow->thread->preferences->global_plugin_dir));
        add_subwindow(ipath = new BrowseButton(mwindow,
                this,
-               ipathtext, 
-               215, 
-               y, 
-               pwindow->thread->preferences->global_plugin_dir, 
-               _("Global Plugin Path"), 
-               _("Select the directory for plugins"), 
+               ipathtext,
+               215,
+               y,
+               pwindow->thread->preferences->global_plugin_dir,
+               _("Global Plugin Path"),
+               _("Select the directory for plugins"),
                1));
-       
+
        y += 35;
        add_subwindow(new BC_Title(x, y, _("Look for personal plugins here"), MEDIUMFONT, BLACK));
        y += 20;
        add_subwindow(lpathtext = new PluginLocalPathText(x, y, pwindow, pwindow->thread->preferences->local_plugin_dir));
        add_subwindow(lpath = new BrowseButton(mwindow,
                this,
-               lpathtext, 
-               215, 
-               y, 
-               pwindow->thread->preferences->local_plugin_dir, 
-               _("Personal Plugin Path"), 
-               _("Select the directory for plugins"), 
+               lpathtext,
+               215,
+               y,
+               pwindow->thread->preferences->local_plugin_dir,
+               _("Personal Plugin Path"),
+               _("Select the directory for plugins"),
                1));
 
 }
@@ -90,8 +90,8 @@ void PluginPrefs::create_objects()
 
 PluginGlobalPathText::PluginGlobalPathText(int x, int y, PreferencesWindow *pwindow, char *text)
  : BC_TextBox(x, y, 200, 1, text)
-{ 
-       this->pwindow = pwindow; 
+{
+       this->pwindow = pwindow;
 }
 
 PluginGlobalPathText::~PluginGlobalPathText() {}
@@ -107,8 +107,8 @@ int PluginGlobalPathText::handle_event()
 
 PluginLocalPathText::PluginLocalPathText(int x, int y, PreferencesWindow *pwindow, char *text)
  : BC_TextBox(x, y, 200, 1, text)
-{ 
-       this->pwindow = pwindow; 
+{
+       this->pwindow = pwindow;
 }
 
 PluginLocalPathText::~PluginLocalPathText() {}