]> git.lyx.org Git - lyx.git/blobdiff - src/funcrequest.C
fix reading the author field.
[lyx.git] / src / funcrequest.C
index c3b0c2d4bcf7d6e91b0d8d5484674cb610048f4f..382ac4fa4a10a3279d12c17096d7864c32163cd4 100644 (file)
@@ -12,9 +12,8 @@
 
 #include "funcrequest.h"
 
-#include "support/std_sstream.h"
-
 #include <iostream>
+#include <sstream>
 #include <vector>
 
 using std::getline;
@@ -91,8 +90,8 @@ bool operator==(FuncRequest const & lhs, FuncRequest const & rhs)
 std::ostream & operator<<(std::ostream & os, FuncRequest const & cmd)
 {
        return os
-               << " action: " << cmd.action 
+               << " action: " << cmd.action
                << " arg: '" << cmd.argument << "'"
-               << " x: " << cmd.x 
-               << " y: " << cmd.y; 
+               << " x: " << cmd.x
+               << " y: " << cmd.y;
 }