tiny optimization.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16657 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-01-11 22:38:37 +00:00
parent 7317e80b1f
commit f92c3db951
2 changed files with 5 additions and 4 deletions

View File

@ -66,7 +66,7 @@ void Counter::reset()
} }
docstring Counter::master() const docstring const & Counter::master() const
{ {
return master_; return master_;
} }
@ -318,12 +318,13 @@ docstring Counters::counterLabel(docstring const & format)
if (j == docstring::npos) if (j == docstring::npos)
break; break;
size_t const k = label.find('}', j + 1); size_t const k = label.find('}', j + 1);
if (k == string::npos) if (k == docstring::npos)
break; break;
docstring const numbertype(label, i + 1, j - i - 1); docstring const numbertype(label, i + 1, j - i - 1);
docstring const counter(label, j + 1, k - j - 1); docstring const counter(label, j + 1, k - j - 1);
docstring const rep = labelItem(counter, numbertype); docstring const rep = labelItem(counter, numbertype);
label = docstring(label, 0, i) + rep + docstring(label, k + 1, string::npos); label = docstring(label, 0, i) + rep
+ docstring(label, k + 1, docstring::npos);
//lyxerr << " : " << " (" << counter << "," //lyxerr << " : " << " (" << counter << ","
// << numbertype << ") -> " << label << endl; // << numbertype << ") -> " << label << endl;
} }

View File

@ -38,7 +38,7 @@ public:
/// ///
void reset(); void reset();
/// Returns the master counter of this counter /// Returns the master counter of this counter
lyx::docstring master() const; lyx::docstring const & master() const;
/// sets the master counter for this counter /// sets the master counter for this counter
void setMaster(lyx::docstring const & m); void setMaster(lyx::docstring const & m);
private: private: