]> git.lyx.org Git - lyx.git/blobdiff - src/lyxsocket.C
- Link against qt-mt333.lib which is what the current qt3 cvs produces
[lyx.git] / src / lyxsocket.C
index bad14b65d195cd475c2b305846b26311f558a120..17c33165244964c46d53125c97468475ce69a6e2 100644 (file)
@@ -56,7 +56,7 @@ LyXServerSocket::LyXServerSocket(LyXFunc * f, string const & addr)
 
        lyx_gui::register_socket_callback(
                fd_,
-               boost::bind(&LyXServerSocket::serverCallback, *this)
+               boost::bind(&LyXServerSocket::serverCallback, this)
                );
 
        lyxerr[Debug::LYXSERVER] << "lyx: New server socket "
@@ -103,7 +103,7 @@ void LyXServerSocket::serverCallback()
        lyx_gui::register_socket_callback(
                client_fd,
                boost::bind(&LyXServerSocket::dataCallback,
-                           *this, client_fd)
+                           this, client_fd)
                );
 }