]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QPreambleDialog.C
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QPreambleDialog.C
index 658e6313e0664ec4da4949723e9e08126571fe6e..44ffb0519c6b44f9fc60612a3247a79d55ff5d1b 100644 (file)
@@ -1,30 +1,36 @@
 /**
  * \file QPreambleDialog.C
- * Copyright 2001 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 John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
-#include <fstream>
 
-#include <qpushbutton.h>
-#include <qmultilineedit.h>
-#include <qinputdialog.h>
-
-#include "QPreambleDialog.h"
-#include "Dialogs.h"
-#include "QPreamble.h"
+#ifdef __GNUG__
+#pragma implementation
+#endif
 
+#include "Lsstream.h"
 #include "support/lyxlib.h"
 #include "support/forkedcall.h"
 #include "support/filetools.h"
 #include "gettext.h"
-
-#include "QtLyXView.h"
+#include "LyXView.h"
 #include "ControlPreamble.h"
 
+#include "QPreamble.h"
+#include "QPreambleDialog.h"
+
+#include <qpushbutton.h>
+#include <qmultilineedit.h>
+#include <qinputdialog.h>
+
+#include <fstream>
+
 using std::getline;
 
 QPreambleDialog::QPreambleDialog(QPreamble * form)
@@ -58,7 +64,7 @@ void QPreambleDialog::editClicked()
        // find an editor
        string editor = GetEnv("EDITOR");
        if (editor.empty()) {
-               static string lastentry = "";
+               static string lastentry;
                editor = QInputDialog::getText(
                        _("Enter editor program"), _("Editor"), QLineEdit::Normal,
                        lastentry.c_str()).latin1();
@@ -79,7 +85,7 @@ void QPreambleDialog::editClicked()
 
        file.close();
 
-       editor += " " + filename;
+       editor += ' ' + filename;
 
        Forkedcall call;
 
@@ -96,14 +102,12 @@ void QPreambleDialog::editClicked()
                return;
        }
 
-       string newtext;
-       string line;
-
-       while (getline(in, line)) {
-               newtext += line + "\n";
-       }
+       ostringstream newtext;
+       newtext << in.rdbuf();
 
+       // close the files before we delete the file
        in.close();
+
        lyx::unlink(filename);
-       preambleLE->setText(newtext.c_str());
+       preambleLE->setText(newtext.str().c_str());
 }