]> git.lyx.org Git - lyx.git/blobdiff - src/format.C
the spellcheck cleanup
[lyx.git] / src / format.C
index fd9a07e4a54577b2d9d4234a5cf97a187e21ef5b..c91ce4c05b129831ae17116c75138c8ac07b440e 100644 (file)
@@ -16,6 +16,7 @@
 #include "lyxrc.h"
 #include "debug.h"
 #include "gettext.h"
+#include "lyxsocket.h"
 
 #include "frontends/Alert.h" //to be removed?
 
 #include "support/systemcall.h"
 #include "support/lyxfunctional.h"
 
-using namespace lyx::support;
+using lyx::support::bformat;
+using lyx::support::compare_ascii_no_case;
+using lyx::support::contains;
+using lyx::support::OnlyFilename;
+using lyx::support::OnlyPath;
+using lyx::support::Path;
+using lyx::support::QuoteName;
+using lyx::support::subst;
+using lyx::support::Systemcall;
 
+using std::string;
+
+extern LyXServerSocket * lyxsocket;
 
 namespace {
 
 string const token_from("$$i");
 string const token_path("$$p");
+string const token_socket("$$a");
 
 } //namespace anon
 
@@ -186,7 +199,7 @@ bool Formats::view(Buffer const & buffer, string const & filename,
        command = subst(command, token_from,
                        QuoteName(OnlyFilename(filename)));
        command = subst(command, token_path, QuoteName(OnlyPath(filename)));
-
+       command = subst(command, token_socket, QuoteName(lyxsocket->address()));
        lyxerr[Debug::FILES] << "Executing command: " << command << std::endl;
        buffer.message(_("Executing command: ") + command);