]> git.lyx.org Git - lyx.git/blobdiff - src/ServerSocket.h
Fix overflow of inset over text (see #9224)
[lyx.git] / src / ServerSocket.h
index 420089984c6d5373678369e136267fbae17527de..7364250e17b7174dfb791490706d2f48c7cfaaac 100644 (file)
@@ -15,9 +15,8 @@
 #define LYXSERVERSOCKET_H
 
 #include "support/FileName.h"
-#include "support/socktools.h"
 
-#include <boost/shared_ptr.hpp>
+#include "support/shared_ptr.h"
 
 #include <string>
 #include <map>
@@ -61,7 +60,7 @@ private:
                MAX_CLIENTS = 10
        };
        /// All connections
-       std::map<int, boost::shared_ptr<LyXDataSocket> > clients;
+       std::map<int, shared_ptr<LyXDataSocket> > clients;
 };