]> git.lyx.org Git - lyx.git/blobdiff - src/support/os_win32.cpp
tiger support on mac snow leopard, include Qt4 frameworks, smart build script with...
[lyx.git] / src / support / os_win32.cpp
index a8ffaa54773f93a5e40220c31b6f5efd3842142b..5577221689d3841b634959080ade3766c0282a62 100644 (file)
@@ -209,6 +209,14 @@ string utf8_argv(int i)
 }
 
 
+void remove_internal_args(int i, int num)
+{
+       argc_ -= num;
+       for (int j = i; j < argc_; ++j)
+               argv_[j] = argv_[j + num];
+}
+
+
 string current_root()
 {
        // _getdrive returns the current drive (1=A, 2=B, and so on).