]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormVCLog.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FormVCLog.C
index a5d49915a3c673f12cf071ecd4bc463a1c295d3e..87c1a9e606a3f90f48312073b47ca5d57c2dc882 100644 (file)
@@ -5,19 +5,20 @@
  *
  * \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 "Lsstream.h"
 
-
-#include "xformsBC.h"
-#include "ControlVCLog.h"
 #include "FormVCLog.h"
+#include "ControlVCLog.h"
 #include "forms/form_browser.h"
-#include "gettext.h"
-#include FORMS_H_LOCATION
+
+#include "xformsBC.h"
+
+#include "lyx_forms.h"
+
+#include "support/std_sstream.h"
 
 
 FormVCLog::FormVCLog(Dialog & parent)
@@ -29,7 +30,7 @@ void FormVCLog::update()
 {
        fl_clear_browser(dialog_->browser);
 
-       ostringstream ss;
+       std::ostringstream ss;
        controller().getVCLogFile(ss);
 
        fl_add_browser_line(dialog_->browser, ss.str().c_str());