]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/forms_gettext.C
If I ever see another licence blurb again, it'll be too soon...
[lyx.git] / src / frontends / xforms / forms_gettext.C
1 /**
2  * \file forms_gettext.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10 #include <config.h>
11
12
13 #include "forms_gettext.h"
14 #include "support/lstrings.h"
15
16 using namespace lyx::support;
17
18 // Extract shortcut from "<identifier>|<shortcut>" string
19 string const scex(string const & str)
20 {
21         return split(str, '|');
22 }
23
24
25 // Extract identifier from "<identifier>|<shortcut>" string
26 string const idex(string const & str)
27 {
28         string identifier;
29         split(str, identifier, '|');
30         return identifier;
31 }