]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FileDialog.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FileDialog.C
index 807476c1915099ec5178c62f5cd9d5e1ad8e0bd9..8582cd32026aa60729a2b379ad078b93913f6b28 100644 (file)
@@ -5,31 +5,29 @@
  *
  * \author John Levon
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-
-#include "FormFiledialog.h"
 #include "frontends/FileDialog.h"
-#include "frontends/LyXView.h"
-#include "bufferview_funcs.h"
-#include "gettext.h"
-#include "commandtags.h"
+#include "FormFiledialog.h"
+
 #include "debug.h"
+#include "gettext.h"
+
 #include "support/lstrings.h"
-#include <utility>
 
+using lyx::support::rsplit;
 
-using std::make_pair;
-using std::pair;
 using std::endl;
+using std::string;
+
 
 FileDialog::FileDialog(string const &t, kb_action s, Button b1, Button b2)
        : private_(0), title_(t), success_(s)
 {
-       private_ = new FileDialog::Private();
+       private_ = new FileDialog::Private;
 
        private_->SetButton(0, b1.first, b1.second);
        private_->SetButton(1, b2.first, b2.second);
@@ -50,7 +48,7 @@ FileDialog::Result const FileDialog::save(string const & path, string const & ma
 
 FileDialog::Result const FileDialog::opendir(string const & path, string const & suggested)
 {
-       lyxerr[Debug::GUI] << "filedialog open  with path \"" << path << "\", suggested \"" 
+       lyxerr[Debug::GUI] << "filedialog open  with path \"" << path << "\", suggested \""
                << suggested << '"' << endl;
 
        // no support for asynchronous selection yet