mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
small things
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3052 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c84131951f
commit
10f697abbe
@ -97,9 +97,6 @@ to make it into 0.14:
|
|||||||
- version.sty
|
- version.sty
|
||||||
- cvs
|
- cvs
|
||||||
- sccs
|
- sccs
|
||||||
o I am sure mathed improvements. (Alejandro's department)
|
|
||||||
- better macro support
|
|
||||||
- better amsmath support
|
|
||||||
o character styles (similar to emph and noun)
|
o character styles (similar to emph and noun)
|
||||||
Will make a lot of small things conceptual instead of
|
Will make a lot of small things conceptual instead of
|
||||||
specific. Will be alot easier to change the
|
specific. Will be alot easier to change the
|
||||||
|
@ -336,7 +336,7 @@ Menuset
|
|||||||
Separator
|
Separator
|
||||||
Item "About LyX|X" "help-aboutlyx"
|
Item "About LyX|X" "help-aboutlyx"
|
||||||
Separator
|
Separator
|
||||||
Item "TeX Infos" "help-Texinfo"
|
Item "TeX Information" "help-Texinfo"
|
||||||
End
|
End
|
||||||
|
|
||||||
End
|
End
|
||||||
|
@ -69,7 +69,10 @@ namespace {
|
|||||||
string const sortEntries(string & str_in)
|
string const sortEntries(string & str_in)
|
||||||
{
|
{
|
||||||
std::vector<string> dbase = getVectorFromString(str_in,"\n");
|
std::vector<string> dbase = getVectorFromString(str_in,"\n");
|
||||||
std::sort(dbase.begin(), dbase.end()); // sort entries
|
std::sort(dbase.begin(), dbase.end()); // sort entries
|
||||||
|
std::vector<string>::iterator p =
|
||||||
|
std::unique(dbase.begin(), dbase.end()); // compact
|
||||||
|
dbase.erase(p, dbase.end()); // shrink
|
||||||
return getStringFromVector(dbase,"\n");
|
return getStringFromVector(dbase,"\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user