[EMAIL PROTECTED] wrote:
Author: forenr
Date: Wed Dec 13 06:29:19 2006
New Revision: 16262
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/lyx_main.C?rev=16262
==============================================================================
--- lyx-devel/trunk/src/lyx_main.C (original)
+++ lyx-devel/trunk/src/lyx_main.C Wed Dec 13 06:29:19 2006
@@ -110,6 +110,9 @@
namespace {
+/// Don't try to remove the temporary directory if it has not been created
+bool remove_tmpdir = false;
Please, no more global variable!
I created a Singletons class explicitely to avoid that, please use it.
Abdel.