]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormSendto.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FormSendto.C
index e126ced8d63ae9f92cc1e076f93be92ec6b5987a..589610c8d28bd2fa58aec4bd99980e1800b3ffda 100644 (file)
@@ -1,33 +1,39 @@
-/*
+/**
  * \file FormSendto.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "FormSendto.h"
-#include "forms/form_sendto.h"
 #include "ControlSendto.h"
-#include "xformsBC.h"
+#include "forms/form_sendto.h"
+
 #include "Tooltips.h"
 #include "xforms_helpers.h"
-#include "converter.h"
-#include "gettext.h"
-#include FORMS_H_LOCATION
+#include "xformsBC.h"
+
+#include "format.h"
+
+#include "support/lstrings.h"
+
+#include "lyx_forms.h"
+
+using lyx::support::trim;
 
 using std::vector;
+using std::string;
+
 
 typedef FormCB<ControlSendto, FormDB<FD_sendto> > base_class;
 
-FormSendto::FormSendto(ControlSendto & c, Dialogs & d)
-       : base_class(c, d, _("Send document to command"))
+FormSendto::FormSendto()
+       : base_class(_("Send document to command"))
 {}
 
 
@@ -39,9 +45,9 @@ void FormSendto::build()
        setPrehandler(dialog_->input_command);
 
        // Manage the ok, apply, restore and cancel/close buttons
-       bc().setOK(dialog_->button_ok);
-       bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_close);
+       bcview().setOK(dialog_->button_ok);
+       bcview().setApply(dialog_->button_apply);
+       bcview().setCancel(dialog_->button_close);
 
        // Set up the tooltip mechanism
        string str = _("Export the buffer to this format before running the command below on it.");
@@ -93,7 +99,7 @@ ButtonPolicy::SMInput FormSendto::input(FL_OBJECT *, long)
                return ButtonPolicy::SMI_INVALID;
 
        string cmd = getString(dialog_->input_command);
-       cmd = strip(frontStrip(cmd));
+       cmd = trim(cmd);
        if (cmd.empty())
                return ButtonPolicy::SMI_INVALID;