From b70db4ad7492a357b3247b6f6a5562834ac45ed4 Mon Sep 17 00:00:00 2001 From: Dekel Tsur Date: Wed, 24 Jan 2001 15:33:07 +0000 Subject: [PATCH] Fix the sorting of the formats in menus. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@1383 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/MenuBackend.C | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/MenuBackend.C b/src/MenuBackend.C index 1196dbaf2c..a73b2aa175 100644 --- a/src/MenuBackend.C +++ b/src/MenuBackend.C @@ -226,6 +226,13 @@ void Menu::checkShortcuts() const } } +class compare_format { +public: + bool operator()(Format const * p1, Format const * p2) { + return *p1 < *p2; + } +}; + void Menu::expand(Menu & tomenu, Buffer * buf) const { for (const_iterator cit = begin(); @@ -292,7 +299,7 @@ void Menu::expand(Menu & tomenu, Buffer * buf) const formats = Exporter::GetExportableFormats(buf, false); action = LFUN_EXPORT; } - sort(formats.begin(), formats.end()); + sort(formats.begin(), formats.end(), compare_format()); for (vector::const_iterator fit = formats.begin(); fit != formats.end() ; ++fit) {