]> git.lyx.org Git - lyx.git/blobdiff - src/debug.C
Point fix, earlier forgotten
[lyx.git] / src / debug.C
index a40f6c45fedd612913b06889d33b7d684d1f7e3e..9fe1f2a9036c04008259ca215618d19a9fd3fe1c 100644 (file)
@@ -1,11 +1,13 @@
-/* This file is part of
-* ======================================================
-*
-*           LyX, The Document Processor
-*
-*           Copyright 1999-2001 The LyX Team.
-*
-* ====================================================== */
+/**
+ * \file debug.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
@@ -15,6 +17,8 @@
 
 #include <iomanip>
 
+using namespace lyx::support;
+
 using std::ostream;
 using std::setw;
 using std::endl;
@@ -105,7 +109,7 @@ void Debug::showLevel(ostream & os, Debug::type level)
                    && errorTags[i].level != Debug::NONE
                    && errorTags[i].level & level) {
                        // avoid _(...) re-entrance problem
-                       const string s = _(errorTags[i].desc);
+                       string const s = _(errorTags[i].desc);
                        os << bformat(_("Debugging `%1$s' (%2$s)"),
                                        errorTags[i].name, s);
                }