]> git.lyx.org Git - lyx.git/blobdiff - src/Counters.cpp
installer: further preparation
[lyx.git] / src / Counters.cpp
index df22b0a5d0af2b1a4c95580f27b27e2739fe5538..e73e2d89139c6da6a12d0308633980ee72779284 100644 (file)
@@ -261,7 +261,7 @@ void Counters::step(docstring const & ctr, UpdateType utype)
 
        it->second.step();
        if (utype == OutputUpdate) {
-               LBUFERR(!counter_stack_.empty(), _("Empty counter stack!"));
+               LBUFERR(!counter_stack_.empty());
                counter_stack_.pop_back();
                counter_stack_.push_back(ctr);
        }
@@ -597,7 +597,7 @@ docstring Counters::prettyCounter(docstring const & name,
 
 docstring Counters::currentCounter() const
 { 
-       LBUFERR(!counter_stack_.empty(), _("Empty counter stack!"));
+       LBUFERR(!counter_stack_.empty());
        return counter_stack_.back(); 
 }