]> git.lyx.org Git - lyx.git/blobdiff - src/counters.C
"Inter-word Space"
[lyx.git] / src / counters.C
index cc5d3328ee46609ca81cc402ebdc53b0efb3cfe9..094dcd8bf7937e856de8730a8b1c33ab5186aaa9 100644 (file)
@@ -9,14 +9,11 @@
  *
  * ====================================================== */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include <config.h>
 
 #include "counters.h"
 #include "debug.h"
+#include "Lsstream.h"
 
 #include "support/lstrings.h"
 #include "support/LAssert.h"
@@ -261,11 +258,11 @@ string Counters::labelItem(string const & ctr,
        CounterList::iterator it = counterList.find(ctr);
        if (it == counterList.end()) {
                lyxerr << "Counter does not exist." << endl;
-               return "";
+               return string();
        }
 
        if (!first) {
-               s << "." << value(ctr);
+               s << '.' << value(ctr);
        } else {
                if (numbertype == "sectioning" || numbertype == "appendix") {
                        if (numbertype == "appendix") {